Commit be8ca7ad authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #5751 from mikanbako:fix-document

parents b5d6d701 1621043b
...@@ -3393,7 +3393,7 @@ represents the background label. ltype specifies the output label image type, an ...@@ -3393,7 +3393,7 @@ represents the background label. ltype specifies the output label image type, an
consideration based on the total number of labels or alternatively the total number of pixels in consideration based on the total number of labels or alternatively the total number of pixels in
the source image. the source image.
@param image the image to be labeled @param image the 8-bit single-channel image to be labeled
@param labels destination labeled image @param labels destination labeled image
@param connectivity 8 or 4 for 8-way or 4-way connectivity respectively @param connectivity 8 or 4 for 8-way or 4-way connectivity respectively
@param ltype output image label type. Currently CV_32S and CV_16U are supported. @param ltype output image label type. Currently CV_32S and CV_16U are supported.
...@@ -3402,7 +3402,7 @@ CV_EXPORTS_W int connectedComponents(InputArray image, OutputArray labels, ...@@ -3402,7 +3402,7 @@ CV_EXPORTS_W int connectedComponents(InputArray image, OutputArray labels,
int connectivity = 8, int ltype = CV_32S); int connectivity = 8, int ltype = CV_32S);
/** @overload /** @overload
@param image the image to be labeled @param image the 8-bit single-channel image to be labeled
@param labels destination labeled image @param labels destination labeled image
@param stats statistics output for each label, including the background label, see below for @param stats statistics output for each label, including the background label, see below for
available statistics. Statistics are accessed via stats(label, COLUMN) where COLUMN is one of available statistics. Statistics are accessed via stats(label, COLUMN) where COLUMN is one of
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment