码迷,mamicode.com
首页 > 其他好文 > 详细

3.1.4双阈值法二值化操作

时间:2018-08-13 12:14:14      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:opencv2   turn   结果   函数   image   binary   rgb   ima   return   

 

 

 1 ////3.1.4双阈值法二值化操作
 2 ////利用OpenCV的threshold函数实现双阈值法二值化操作的源码!
 3 ////SourceCode:https://blog.csdn.net/wenhao_ir/article/details/51566817
 4 #include "opencv2/imgproc/imgproc.hpp"
 5 #include "opencv2/highgui/highgui.hpp"
 6 int main()
 7 {
 8     // 图像读取及判断
 9     cv::Mat srcImage = cv::imread("D:\\0604.png");
10     if (!srcImage.data)
11         return 1;
12     // 灰度转换
13     cv::Mat srcGray;
14     cv::cvtColor(srcImage, srcGray, CV_RGB2GRAY);
15     cv::imshow("srcGray", srcGray);
16     // 初始化阈值参数
17     const int maxVal = 255;
18     int low_threshold = 150;
19     int high_threshold = 210;
20     cv::Mat dstTempImage1, dstTempImage2, dstImage;
21     // 小阈值对源灰度图像进行阈值化操作
22     cv::threshold(srcGray, dstTempImage1,
23         low_threshold, maxVal, cv::THRESH_BINARY);
24     // 大阈值对源灰度图像进行阈值化操作
25     cv::threshold(srcGray, dstTempImage2,
26         high_threshold, maxVal, cv::THRESH_BINARY_INV);//要特别注意这里的最后一个参数是INV哦
27                                                        // 矩阵与运算得到二值化结果
28     cv::bitwise_and(dstTempImage1,
29         dstTempImage2, dstImage);
30     cv::imshow("dstImage", dstImage);
31     cv::waitKey(0);
32     return 0;
33 }

技术分享图片

 

3.1.4双阈值法二值化操作

标签:opencv2   turn   结果   函数   image   binary   rgb   ima   return   

原文地址:https://www.cnblogs.com/thebreakofdawn/p/9466907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!