mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
14 lines
255 B
C++
14 lines
255 B
C++
#ifndef RUBY_OPENCV_RECT_H
|
|
#define RUBY_OPENCV_RECT_H
|
|
/*
|
|
* Document-class: Cv::Rect
|
|
*/
|
|
namespace rubyopencv {
|
|
namespace Rect {
|
|
void init();
|
|
VALUE rect2obj (cv::Rect rect);
|
|
cv::Rect* obj2rect(VALUE obj);
|
|
}
|
|
}
|
|
|
|
#endif // RUBY_OPENCV_RECT_H
|