@@ -403,7 +403,7 @@ enum ConnectedComponentsTypes {
403
403
404
404
// ! connected components algorithm
405
405
enum ConnectedComponentsAlgorithmsTypes {
406
- CCL_WU = 0 , // !< SAUF algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
406
+ CCL_WU = 0 , // !< SAUF @cite Wu2009 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
407
407
CCL_DEFAULT = -1 , // !< BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
408
408
CCL_GRANA = 1 // !< BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
409
409
};
@@ -3842,7 +3842,7 @@ image with 4 or 8 way connectivity - returns N, the total number of labels [0, N
3842
3842
represents the background label. ltype specifies the output label image type, an important
3843
3843
consideration based on the total number of labels or alternatively the total number of pixels in
3844
3844
the source image. ccltype specifies the connected components labeling algorithm to use, currently
3845
- Grana (BBDT) and Wu's (SAUF) algorithms are supported, see the #ConnectedComponentsAlgorithmsTypes
3845
+ Grana (BBDT) and Wu's (SAUF) @cite Wu2009 algorithms are supported, see the #ConnectedComponentsAlgorithmsTypes
3846
3846
for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
3847
3847
This function uses parallel version of both Grana and Wu's algorithms if at least one allowed
3848
3848
parallel framework is enabled and if the rows of the image are at least twice the number returned by #getNumberOfCPUs.
@@ -3874,7 +3874,7 @@ image with 4 or 8 way connectivity - returns N, the total number of labels [0, N
3874
3874
represents the background label. ltype specifies the output label image type, an important
3875
3875
consideration based on the total number of labels or alternatively the total number of pixels in
3876
3876
the source image. ccltype specifies the connected components labeling algorithm to use, currently
3877
- Grana's (BBDT) and Wu's (SAUF) algorithms are supported, see the #ConnectedComponentsAlgorithmsTypes
3877
+ Grana's (BBDT) and Wu's (SAUF) @cite Wu2009 algorithms are supported, see the #ConnectedComponentsAlgorithmsTypes
3878
3878
for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
3879
3879
This function uses parallel version of both Grana and Wu's algorithms (statistics included) if at least one allowed
3880
3880
parallel framework is enabled and if the rows of the image are at least twice the number returned by #getNumberOfCPUs.
0 commit comments