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:
parent
2c6f30ab25
commit
11c4154b7c
264 changed files with 53296 additions and 51592 deletions
17
ext/opencv/mat_imgproc.hpp
Normal file
17
ext/opencv/mat_imgproc.hpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
// -*- mode: c++; coding: utf-8 -*-
|
||||
#ifndef RUBY_OPENCV_MAT_IMGPROC_H
|
||||
#define RUBY_OPENCV_MAT_IMGPROC_H
|
||||
|
||||
#include "ruby.h"
|
||||
|
||||
namespace rubyopencv {
|
||||
namespace Mat {
|
||||
VALUE rb_sobel(int argc, VALUE *argv, VALUE self);
|
||||
VALUE rb_canny(int argc, VALUE *argv, VALUE self);
|
||||
VALUE rb_laplacian(int argc, VALUE *argv, VALUE self);
|
||||
VALUE rb_cvt_color(int argc, VALUE *argv, VALUE self);
|
||||
VALUE rb_resize(int argc, VALUE *argv, VALUE self);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // RUBY_OPENCV_MAT_IMGPROC_H
|
Loading…
Add table
Add a link
Reference in a new issue