1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 02:16:34 +08:00

Fix default parameter to be coherent with documentation

This commit is contained in:
Jan Sellner
2020-06-13 14:46:06 +02:00
committed by Jan Sellner
parent 042548edb8
commit 80dfcdbfb6

View File

@@ -126,7 +126,7 @@ public:
The function merge component that is too small, assigning the previously found adjacent label
to this component. Calling this function may change the final number of superpixels.
*/
CV_WRAP virtual void enforceLabelConnectivity( int min_element_size = 20 ) = 0;
CV_WRAP virtual void enforceLabelConnectivity( int min_element_size = 25 ) = 0;
};