You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
what's the meaning of the Lable?
I don't know how to give the the value to max_lable in below function? the test example is outdata
/// \brief Label the connected parts of a binary image.
/// Simple, fast algorithm. Does not compute contours.
/// \param img Input binary image (type = CV_8UC1).
void SimpleLabel(const cv::Mat &img, Label max_label);
/// \brief Label the connected parts of a binary image.
/// Algorithm based on paper "A linear-time component-labeling algorithm using contour tracing technique" of Fu Chang, Chun-Jen Chen and Chi-Jen Lu.
/// \param img Input binary image (type = CV_8UC1).
void LabelImage (const cv::Mat &img, Label max_label);
The text was updated successfully, but these errors were encountered:
what's the meaning of the Lable?
I don't know how to give the the value to max_lable in below function? the test example is outdata
The text was updated successfully, but these errors were encountered: