摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img_gray, kernel_x, kernel_y; char win1 阅读全文
posted @ 2018-10-01 20:42 西北逍遥 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 图像的二值化就是将图像上的像素点的灰度值设置为0或255,这样将使整个图像呈现出明显的黑白效果。在数字图像处理中,二值图像占有非常重要的地位,图像的二值化使图像中数据量大为减少,从而能凸显出目标的轮廓。 threshold( InputArray src, OutputArray dst, doub 阅读全文
posted @ 2018-10-01 20:33 西北逍遥 阅读(342) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; //Robert算子int Demo_Robert(){ char win1[] = "window1"; char wi 阅读全文
posted @ 2018-10-01 17:16 西北逍遥 阅读(2452) 评论(3) 推荐(0) 编辑
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; //形态学操作int Demo_Morphology(){ char win1[] = "window1"; char w 阅读全文
posted @ 2018-10-01 10:10 西北逍遥 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; int elementSize = 3;int maxSize = 260; int Demo_Load_Img(); / 阅读全文
posted @ 2018-10-01 08:57 西北逍遥 阅读(631) 评论(0) 推荐(0) 编辑