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/mat_imgproc.hpp
2016-04-03 05:19:48 +09:00

17 lines
492 B
C++

// -*- 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