From e40f7a891724fad024543f5219b768041117e6cb Mon Sep 17 00:00:00 2001 From: ser1zw Date: Sun, 30 Apr 2017 04:54:05 +0900 Subject: [PATCH] fix document --- ext/opencv/mat_imgproc.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/opencv/mat_imgproc.cpp b/ext/opencv/mat_imgproc.cpp index d8071a5..69d021d 100644 --- a/ext/opencv/mat_imgproc.cpp +++ b/ext/opencv/mat_imgproc.cpp @@ -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);