Skip to content

Commit 5b23c0b

Browse files
Fixed unnecessary black spaces;
Extended parallel version to all frameworks supported by OpenCV; Added some documentation notes in modules/imgproc/include/opencv2/imgproc.hpp;
1 parent 0bc9a0d commit 5b23c0b

File tree

2 files changed

+1643
-1605
lines changed

2 files changed

+1643
-1605
lines changed

modules/imgproc/include/opencv2/imgproc.hpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3674,8 +3674,10 @@ image with 4 or 8 way connectivity - returns N, the total number of labels [0, N
36743674
represents the background label. ltype specifies the output label image type, an important
36753675
consideration based on the total number of labels or alternatively the total number of pixels in
36763676
the source image. ccltype specifies the connected components labeling algorithm to use, currently
3677-
Grana's (BBDT) and Wu's (SAUF) algorithms are supported, see the cv::ConnectedComponentsAlgorithmsTypes
3677+
Grana (BBDT) and Wu's (SAUF) algorithms are supported, see the cv::ConnectedComponentsAlgorithmsTypes
36783678
for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
3679+
This function uses parallel version of both Grana and Wu's algorithms if at least one allowed
3680+
parallel framework is enabled.
36793681
36803682
@param image the 8-bit single-channel image to be labeled
36813683
@param labels destination labeled image
@@ -3706,7 +3708,8 @@ consideration based on the total number of labels or alternatively the total num
37063708
the source image. ccltype specifies the connected components labeling algorithm to use, currently
37073709
Grana's (BBDT) and Wu's (SAUF) algorithms are supported, see the cv::ConnectedComponentsAlgorithmsTypes
37083710
for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
3709-
3711+
This function uses parallel version of both Grana and Wu's algorithms (statistics included) if at least one allowed
3712+
parallel framework is enabled.
37103713
37113714
@param image the 8-bit single-channel image to be labeled
37123715
@param labels destination labeled image

0 commit comments

Comments
 (0)