opencv 对RGB图像直接二值化

 #include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std; int main()
{ const char* inputImage = "33.jpg";
Mat img; img = imread(inputImage, );
if (img.empty())
{
cout << "Could not read input image file: " << inputImage << endl;
return -;
} img = img >;
imshow("Img", img);
waitKey();
return ;
}

opencv 对RGB图像直接二值化                opencv 对RGB图像直接二值化

上一篇:C语言中的内存分配与释放


下一篇:js 判断当前的手机系统类型