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

add Mat#blur

This commit is contained in:
ser1zw 2016-04-10 01:33:09 +09:00
parent 4ec9d3e235
commit f0c42c52ea
5 changed files with 64 additions and 1 deletions

View file

@ -895,7 +895,8 @@ namespace rubyopencv {
rb_define_method(rb_klass, "resize", RUBY_METHOD_FUNC(rb_resize), -1); // in ext/opencv/mat_imgproc.cpp
rb_define_method(rb_klass, "cvt_color", RUBY_METHOD_FUNC(rb_cvt_color), -1); // in ext/opencv/mat_imgproc.cpp
rb_define_method(rb_klass, "blur", RUBY_METHOD_FUNC(rb_blur), -1); // in ext/opencv/mat_imgproc.cpp
rb_define_method(rb_klass, "save", RUBY_METHOD_FUNC(rb_save), -1);
rb_define_method(rb_klass, "imencode", RUBY_METHOD_FUNC(rb_imencode), -1);