mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
14 lines
291 B
C++
14 lines
291 B
C++
// -*- mode: c++; coding: utf-8 -*-
|
|
#ifndef RUBY_OPENCV_SCALAR_H
|
|
#define RUBY_OPENCV_SCALAR_H
|
|
|
|
namespace rubyopencv {
|
|
namespace Scalar {
|
|
void init();
|
|
VALUE klass();
|
|
cv::Scalar* obj2scalar(VALUE obj);
|
|
VALUE scalar2obj(cv::Scalar* ptr);
|
|
}
|
|
}
|
|
|
|
#endif // RUBY_OPENCV_SCALAR_H
|