C++ OpenCV 图像转换,识别图像轮廓,画矩形

1.

#include "ReadIDCard.h"
//#include "stdafx.h"
#include  <iostream>
#include  <stdio.h>
#include <opencv2/opencv.hpp>
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
using namespace cv;
using namespace std;
 
ReadIDCard::ReadIDCard()
{
    
}
 
 void  ReadIDCard::Com() {
       Mat src = imread("IDCard.jpg",0);
       // 结果图
       Mat dst;
       // 显示原图
       imshow("原图", src);
 
       cvtColor(src, dst, COLOR_RGB2GRAY);
       // 高斯模糊,主要用于降噪
       GaussianBlur(dst, dst, Size(3, 3), 0);
       imshow("GaussianBlur图", dst);
       // 二值化图,主要将灰色部分转成白色,使内容为黑色
       threshold(dst, dst, 165, 255, THRESH_BINARY);
       imshow("threshold图", dst);
       // 中值滤波,同样用于降噪
       medianBlur(dst, dst, 3);
       imshow("medianBlur图", dst);
       // 腐蚀操作,主要将内容部分向高亮部分腐蚀,使得内容连接,方便最终区域选取
       erode(dst, dst, Mat(9, 9, CV_8U));
       imshow("erode图", dst);
 
       //定义变量
       vector<vector<Point>> contours;
       vector<Vec4i> hierarchy;
       findContours(dst, contours, hierarchy, RETR_CCOMP, CHAIN_APPROX_SIMPLE);
 
       Mat result;
 
       for (int i = 0; i < hierarchy.size(); i++)
       {
 
           Rect rect = boundingRect(contours.at(i));
         //  drawContours(src, contours, i, Scalar(255, 0, 255), 1, 8, hierarchy);
          rectangle(src, rect, Scalar(255, 0, 255));
           // 定义身份证号位置大于图片的一半,并且宽度是高度的6倍以上
           if (rect.y > src.rows / 2 && rect.width / rect.height > 6)
           {
               result = src(rect);
               imshow("身份证号", result);
           }
       }
 
       imshow("轮廓图", src);
       waitKey(6000);
 
}
 
ReadIDCard::~ReadIDCard()
{
}
2.效果图如下:


--------------------- 
原文:https://blog.csdn.net/qq_39097425/article/details/84504320 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值