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

add Mat#adaptive_threshold!

This commit is contained in:
ser1zw 2017-04-30 04:45:50 +09:00
parent 85e744c07d
commit aeda43902a
4 changed files with 71 additions and 7 deletions

View file

@ -26,6 +26,8 @@ namespace rubyopencv {
VALUE rb_threshold_bang(VALUE self, VALUE threshold, VALUE max_value, VALUE threshold_type);
VALUE rb_adaptive_threshold(VALUE self, VALUE max_value, VALUE adaptive_method,
VALUE threshold_type, VALUE block_size, VALUE delta);
VALUE rb_adaptive_threshold_bang(VALUE self, VALUE max_value, VALUE adaptive_method,
VALUE threshold_type, VALUE block_size, VALUE delta);
}
}