1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00
ruby-opencv/ext/opencv/rect.hpp
2016-04-10 05:22:49 +09:00

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