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

fix document

This commit is contained in:
ser1zw 2017-04-30 04:54:05 +09:00
parent aeda43902a
commit e40f7a8917

View file

@ -558,6 +558,10 @@ namespace rubyopencv {
return mat2obj(destptr, CLASS_OF(self));
}
/*
* @overload adaptive_threshold!(max_value, adaptive_method, threshold_type, block_size, delta)
* @see #adaptive_threshold
*/
VALUE rb_adaptive_threshold_bang(VALUE self, VALUE max_value, VALUE adaptive_method, VALUE threshold_type,
VALUE block_size, VALUE delta) {
cv::Mat* destptr = obj2mat(self);