File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/text/include/opencv2/text Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -208,10 +208,10 @@ global limit pmin and the difference between local maximum and local minimum is
208
208
minProbabilityDiff).
209
209
*/
210
210
CV_EXPORTS_W Ptr<ERFilter> createERFilterNM1 (const Ptr<ERFilter::Callback>& cb,
211
- int thresholdDelta = 1 , float minArea = 0.00025 ,
212
- float maxArea = 0.13 , float minProbability = 0.4 ,
211
+ int thresholdDelta = 1 , float minArea = ( float ) 0.00025,
212
+ float maxArea = ( float ) 0.13, float minProbability = ( float ) 0.4,
213
213
bool nonMaxSuppression = true,
214
- float minProbabilityDiff = 0.1 );
214
+ float minProbabilityDiff = ( float ) 0.1);
215
215
216
216
/* * @brief Create an Extremal Region Filter for the 2nd stage classifier of N&M algorithm [Neumann12].
217
217
You can’t perform that action at this time.
0 commit comments