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

experimental implementation for OpenCV 3

This commit is contained in:
ser1zw 2016-04-03 05:19:48 +09:00
parent 2c6f30ab25
commit 11c4154b7c
264 changed files with 53296 additions and 51592 deletions

21
ext/opencv/window.hpp Normal file
View file

@ -0,0 +1,21 @@
#ifndef RUBY_OPENCV_WINDOW_H
#define RUBY_OPENCV_WINDOW_H
#include "ruby.h"
#include "opencv2/core.hpp"
#include "opencv2/highgui.hpp"
namespace rubyopencv {
namespace Window {
typedef struct _window {
VALUE name;
VALUE trackbars;
} window_t;
void init();
VALUE rb_wait_key(int argc, VALUE* argv, VALUE self);
}
}
#endif // RUBY_OPENCV_WINDOW_H