Removed parallel version for CV_16U label type

pull/7705/head
Michele Cancilla 8 years ago
parent 4b7fc59332
commit 89a0a46a69
  1. 4
      modules/imgproc/include/opencv2/imgproc.hpp
  2. 1773
      modules/imgproc/src/connectedcomponents.cpp

@ -3677,7 +3677,7 @@ the source image. ccltype specifies the connected components labeling algorithm
Grana (BBDT) and Wu's (SAUF) algorithms are supported, see the cv::ConnectedComponentsAlgorithmsTypes
for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
This function uses parallel version of both Grana and Wu's algorithms if at least one allowed
parallel framework is enabled.
parallel framework is enabled and if the rows of the image are at least twice the number returned by getNumberOfCPUs.
@param image the 8-bit single-channel image to be labeled
@param labels destination labeled image
@ -3709,7 +3709,7 @@ the source image. ccltype specifies the connected components labeling algorithm
Grana's (BBDT) and Wu's (SAUF) algorithms are supported, see the cv::ConnectedComponentsAlgorithmsTypes
for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
This function uses parallel version of both Grana and Wu's algorithms (statistics included) if at least one allowed
parallel framework is enabled.
parallel framework is enabled and if the rows of the image are at least twice the number returned by getNumberOfCPUs.
@param image the 8-bit single-channel image to be labeled
@param labels destination labeled image

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save