我正在尝试使用 Cinder OpenCV 块对图像进行阈值化和反转。在 openFrameworks 我会使用类似的东西:
someImage.threshold(230, true);
...其中 true 是指定阈值和反转的参数。
在 Cinder 中,我正在尝试以下操作:
cv::threshold (input, threshNear, 230, 255, CV_THRESH_BINARY_INV);
...这不起作用,或者
cv::threshold (input, threshNear, 100, 255, CV_8U);
cv::invert ( threshNear, threshNearInverted);
...产生错误并让程序卡住。
有什么建议吗?