1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

implemented rb_cvCreateMat and replaced cvCreateMat with rb_cvCreateMat to create a CvMat as much as possible

This commit is contained in:
ser1zw 2011-04-27 23:39:16 +09:00
parent 882b778e94
commit 196c567ee0
4 changed files with 41 additions and 29 deletions

View file

@ -185,6 +185,8 @@ void release_iplconvkernel_object(void *ptr);
VALUE rb_module_opencv();
void define_ruby_module();
CvMat* rb_cvCreateMat(int height, int width, int type);
// Ruby/OpenCV inline functions
inline CvArr*
CVARR(VALUE object)