cv::threshold(img1, img2, 0, 255, CV_THRESH_OTSU);
Zero (threshold level) is ommited. What value does algorithm use ?
1 | initial version |
cv::threshold(img1, img2, 0, 255, CV_THRESH_OTSU);
Zero (threshold level) is ommited. What value does algorithm use ?
2 | No.2 Revision |
cv::threshold(img1, img2, 0, 255, CV_THRESH_OTSU);
Zero (threshold level) is ommited.
What value does How to get value, that algorithm use uses ?