当前位置:   article > 正文

C++视觉开发 五.答题卡识别

C++视觉开发 五.答题卡识别

 

目录

一.单道题目的识别

1.基本流程及原理

2.实现程序

二.整张答题卡原理

1.图像预处理

Canny 边缘检测

2.答题卡处理

cv::warpPerspective

cv::getPerspectiveTransform

3.筛选出所有选项

cv::boundingRect

4.将选项按题目分组

三.完整实现程序

1.实现代码

2.结果图


 答题卡识别主要步骤

(1)反二值化,选项处理为前景(白色),其它处理为背景(黑色)。

(2)每个选项提取出来,计算各选项白色像素点个数。

(3)筛选出白色像素点最多的选项作为考生答案。

(4)与标准答案比较,给出评阅结果。

基本实现原理图

一.单道题目的识别

1.基本流程及原理

实现步骤流程图

(1)标准答案及选项初始化

为了方便处理,将各个选项放入map的键值对中,不同选项对应不同索引。

  1. // 标准答案及选项初始化
  2. std::map<int, std::string> ANSWER_KEY = { {0, "A"}, {1, "B"}, {2, "C"}, {3, "D"} };
  3. std::string ANSWER = "C";

(2) 读取原始图像

  1. // 读取原始图像
  2. cv::Mat img = cv::imread("xiaogang.jpg");
  3. if (img.empty()) {
  4. std::cout << "图像读取失败!" << std::endl;
  5. return -1;
  6. }
  7. cv::imshow("original", img);

(3)图像预处理

首先进行灰度化和高斯滤波去噪处理,然后进行阈值变换。阈值变换使用的是反二值化阈值处理,将图像内较暗的部分(如铅笔填涂的答案、选项标记等)处理为白色,将图像内相对较亮的部分(如白色等)处理为黑色。之所以这样处理是因为,通常用白色表示前景,前景是需要处理的对象;用黑色表示背景,背景是不需要额外处理的部分。

  1. // 图像预处理
  2. cv::Mat gray, gaussian_blur, thresh;
  3. cv::cvtColor(img, gray, cv::COLOR_BGR2GRAY);
  4. cv::GaussianBlur(gray, gaussian_blur, cv::Size(5, 5), 0);
  5. cv::threshold(gaussian_blur, thresh, 0, 255, cv::THRESH_BINARY_INV | cv::THRESH_OTSU);
  6. // cv::imshow("thresh", thresh);

(4)获取轮廓及排序

获取轮廓是图像处理的关键,借助轮廓能够确定每个选项的位置、选项是否被选中等。
需要注意的是,使用findcontours函数获取的轮廓的排列是没有规律的。因此需要将获取的各选项的轮廓按照从左到右出现的顺序排序,即map中的索引顺序。

  1. // 获取轮廓及排序
  2. std::vector<std::vector<cv::Point>> cnts;
  3. cv::findContours(thresh, cnts, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  4. std::vector<cv::Rect> boundingBoxes;
  5. for (const auto& c : cnts) {
  6. boundingBoxes.push_back(cv::boundingRect(c));
  7. }
  8. std::sort(boundingBoxes.begin(), boundingBoxes.end(), [](const cv::Rect& a, const
  9. cv::Rect& b) {
  10. return a.x < b.x;
  11. });

(5)计算每个选项非零值(白色像素点)个数及序号

本步骤主要完成任务如下,
任务1:提取每一个选项。
任务2:计算每一个选项内的自色像素点个数。
对于任务1,使用按位与运算的掩模方式完成,示意图如图所示,根据“任意数值与自身进行按位与运算,结果仍旧是自身值”及掩模指定计算区域的特点:

如左图所示,将图像与自身进行按位与运算时,得到的仍旧是图像自身
如右图所示,在指定了掩模后,图像与自身相与所得的结果图像中与掩模对应部分保留原值;其余部分均为黑色。

 掩膜示意图

  1. // 构建列表,用来存储每个选项非零值(白色像素点)个数及序号
  2. std::vector<std::pair<int, int>> options;
  3. for (size_t j = 0; j < cnts.size(); ++j) {
  4. // 构造一个与原始图像大小一致的灰度图像,用来保存每一个选项用
  5. cv::Mat mask = cv::Mat::zeros(gray.size(), CV_8UC1);
  6. cv::drawContours(mask, cnts, j, cv::Scalar(255), -1);
  7. // 获取thresh中mask指定部分
  8. cv::Mat result;
  9. cv::bitwise_and(thresh, mask, result);
  10. cv::imshow("mask" + std::to_string(j), mask);
  11. cv::imshow("result" + std::to_string(j), result);
  12. // 计算每一个选项的非零值(白色像素点)
  13. int total = cv::countNonZero(result);
  14. options.push_back(std::make_pair(total, j));
  15. }

(6)识别考生作答选项

白色像素点最多的即为考生选项,如图,考生选项为B

选项示意图

根据轮廓内白色像素点的个数将轮廓降序排列,最前面的即为考生选项。

  1. // 识别考生的选项
  2. std::sort(options.begin(), options.end(), std::greater<>());
  3. int choice_num = options[0].second;
  4. std::string choice = ANSWER_KEY[choice_num];
  5. std::cout << "该生的选项:" << choice << std::endl;

(7)输出结果

根据选项正确与否,用不同颜色标注考生选项,正确标注绿色轮廓,错误标注红色轮廓。

  1. // 根据选项正确与否,用不同颜色标注考生选项
  2. cv::Scalar color;
  3. std::string msg;
  4. if (choice == ANSWER) {
  5. color = cv::Scalar(0, 255, 0); // 回答正确,用绿色表示
  6. msg = "回答正确";
  7. }
  8. else {
  9. color = cv::Scalar(0, 0, 255); // 回答错误,用红色表示
  10. msg = "回答错误";
  11. }
  12. cv::drawContours(img, cnts, choice_num, color, 2);
  13. cv::imshow("result", img);
  14. std::cout << msg << std::endl;

2.实现程序

完整代码如下:

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. #include <vector>
  4. #include <algorithm>
  5. // 标准答案及选项初始化
  6. std::map<int, std::string> ANSWER_KEY = { {0, "A"}, {1, "B"}, {2, "C"}, {3, "D"} };
  7. std::string ANSWER = "C";
  8. int main() {
  9. // 读取原始图像
  10. cv::Mat img = cv::imread("xiaogang.jpg");
  11. if (img.empty()) {
  12. std::cout << "图像读取失败!" << std::endl;
  13. return -1;
  14. }
  15. cv::imshow("original", img);
  16. // 图像预处理
  17. cv::Mat gray, gaussian_blur, thresh;
  18. cv::cvtColor(img, gray, cv::COLOR_BGR2GRAY);
  19. cv::GaussianBlur(gray, gaussian_blur, cv::Size(5, 5), 0);
  20. cv::threshold(gaussian_blur, thresh, 0, 255, cv::THRESH_BINARY_INV | cv::THRESH_OTSU);
  21. // cv::imshow("thresh", thresh);
  22. // 获取轮廓及排序
  23. std::vector<std::vector<cv::Point>> cnts;
  24. cv::findContours(thresh, cnts, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  25. std::vector<cv::Rect> boundingBoxes;
  26. for (const auto& c : cnts) {
  27. boundingBoxes.push_back(cv::boundingRect(c));
  28. }
  29. std::sort(boundingBoxes.begin(), boundingBoxes.end(), [](const cv::Rect& a, const cv::Rect& b) {
  30. return a.x < b.x;
  31. });
  32. // 构建列表,用来存储每个选项非零值(白色像素点)个数及序号
  33. std::vector<std::pair<int, int>> options;
  34. for (size_t j = 0; j < cnts.size(); ++j) {
  35. // 构造一个与原始图像大小一致的灰度图像,用来保存每一个选项用
  36. cv::Mat mask = cv::Mat::zeros(gray.size(), CV_8UC1);
  37. cv::drawContours(mask, cnts, j, cv::Scalar(255), -1);
  38. // 获取thresh中mask指定部分
  39. cv::Mat result;
  40. cv::bitwise_and(thresh, mask, result);
  41. cv::imshow("mask" + std::to_string(j), mask);
  42. cv::imshow("result" + std::to_string(j), result);
  43. // 计算每一个选项的非零值(白色像素点)
  44. int total = cv::countNonZero(result);
  45. options.push_back(std::make_pair(total, j));
  46. }
  47. // 识别考生的选项
  48. std::sort(options.begin(), options.end(), std::greater<>());
  49. int choice_num = options[0].second;
  50. std::string choice = ANSWER_KEY[choice_num];
  51. std::cout << "该生的选项:" << choice << std::endl;
  52. // 根据选项正确与否,用不同颜色标注考生选项
  53. cv::Scalar color;
  54. std::string msg;
  55. if (choice == ANSWER) {
  56. color = cv::Scalar(0, 255, 0); // 回答正确,用绿色表示
  57. msg = "回答正确";
  58. }
  59. else {
  60. color = cv::Scalar(0, 0, 255); // 回答错误,用红色表示
  61. msg = "回答错误";
  62. }
  63. cv::drawContours(img, cnts, choice_num, color, 2);
  64. cv::imshow("result", img);
  65. std::cout << msg << std::endl;
  66. cv::waitKey(0);
  67. cv::destroyAllWindows();
  68. return 0;
  69. }

二.整张答题卡原理

整张答题卡识别的核心就是单道题目的识别。

识别流程如下:

1.图像预处理

图像预处理主要完成读取图像、色彩空间转换、高斯滤波、Canny边缘检测、获取轮廓等。
色彩空间转换:将图像从RGB色彩空间转换到灰度空间,以便后续处理。
高斯滤波:主要用于对图像进行去噪处理。为了得到更好的去噪效果,可以根据需要加入形态学如腐蚀、膨胀等操作。
Canny边缘检测:是为了获取Canny边缘,以便更好地完成后续获取图像轮的操作。

获取轮廓:是指将图像内的所有轮廓提取出来。函数findcontours可以根据参数查找图像内特定的轮廓。例如,通过参数cv2.RETR EXTERNAL可以实现仅查找所有外轮廓。

 其它的操作之前都用到过,下面介绍一下canny边缘检测

Canny 边缘检测

是一种多步骤的图像处理算法,被认为是最优的边缘检测算法之一。Canny 边缘检测的目标是找出图像中显著的边缘,并去除可能由噪声引起的虚假边缘。

在OpenCV中,cv::Canny函数直接实现了Canny边缘检测算法的所有步骤,包括使用Sobel算子计算梯度、非极大值抑制和双阈值检测。

函数语法:

  1. void cv::Canny(
  2. InputArray image, // 输入图像
  3. OutputArray edges, // 输出边缘图像
  4. double threshold1, // 低阈值
  5. double threshold2, // 高阈值
  6. int apertureSize = 3, // Sobel 算子的孔径大小(默认为 3)
  7. bool L2gradient = false // 是否使用更精确的 L2 范数计算梯度幅度(默认为 false)
  8. );
参数含义
image输入图像,通常为灰度图像
edges输出边缘图像,与输入图像大小相同。
threshold1低阈值,用于边缘连接
threshold2高阈值,用于检测强边缘。
apertureSizeSobel 算子的孔径大小,默认为 3
L2gradient

使用 L2 范数计算梯度幅度。

默认为 false,如果设为 true,则使用更精确但更耗时的计算方式。 

 预处理代码:

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. int main() {
  4. // 读取图像
  5. cv::Mat img = cv::imread("b.jpg");
  6. if (img.empty()) {
  7. std::cerr << "图像读取失败!" << std::endl;
  8. return -1;
  9. }
  10. cv::imshow("original", img);
  11. // 转换为灰度图像
  12. cv::Mat gray;
  13. cv::cvtColor(img, gray, cv::COLOR_BGR2GRAY);
  14. cv::imshow("gray", gray);
  15. // 高斯滤波
  16. cv::Mat gaussian;
  17. cv::GaussianBlur(gray, gaussian, cv::Size(5, 5), 0);
  18. cv::imshow("gaussian", gaussian);
  19. // Canny边缘检测
  20. cv::Mat edged;
  21. cv::Canny(gaussian, edged, 50, 200);
  22. cv::imshow("edged", edged);
  23. // 查找轮廓
  24. std::vector<std::vector<cv::Point>> cts;
  25. std::vector<cv::Vec4i> hierarchy;
  26. cv::findContours(edged.clone(), cts, hierarchy, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  27. // 在图像上绘制轮廓
  28. cv::drawContours(img, cts, -1, cv::Scalar(0, 0, 255), 3);
  29. cv::imshow("img", img);
  30. cv::waitKey(0);
  31. cv::destroyAllWindows();
  32. return 0;
  33. }

2.答题卡处理

将答题卡铺满整个页面(倾斜校正、删除无效边缘),将选项处理为白色,背景处理为黑色。
答题卡的处理,需要解决如下几个核心问题。
问题1:如何从众多轮廓中找到答题卡的轮廓?
问题2:如何对答题卡进行倾斜校正、裁剪掉扫描的边缘?
问题3:如何实现前景、背景的有效处理?
问题4:如何找到答题卡内所有选项?

问题1: 如何从众多轮廓中找到答题卡的轮廓?

在将答题卡铺满整个页面前,最重要的步骤是判定哪个轮廓是答题卡的轮廓。也就是说,需要先找到答题卡,再对其处理。

方法1:通常情况下,将函数findContours的method参数值设定为cv2.CHAIN APPROX SIMPLE当它识别到矩形时,就会使用4个顶点来保存其轮廓信息因此,可以通过判定轮廓是否用4个顶点表示,来判定轮廓是不是矩形。这个方法简单易行,但是在扫描答题卡时,可能会发生失真,使得原本是矩形的答题卡变成梯形。此时,简单地通过轮廓的顶点个数判断对象是否是答题卡就无效了。不过,在采用逼近多边形拟合轮廓时,可以使用4个顶点拟合梯形。因此,通过逼近多边形的顶点个数可以判定一个轮廓是否是梯形:若一个轮廓的逼近多边形是4个顶点,则该轮廓是梯形;否则,该轮廓不是梯形。

方法2:除此之外,还有一个方法是在找到的众多轮廓中,面积最大的轮廓可能是答题卡。因此,可以将面积最大的轮廓对应的对象判定为答题卡。

问题2: 如何对答题卡进行倾斜校正、裁剪掉扫描的边缘?

通常情况下,通过扫描等方式得到的答题卡可能存在较大的黑边及较大程度的倾斜,需要对其进行校正。该操作通常通过透视变换实现。透视变换可以将矩形映射为任意四边形,在0pencv中可通过函数warpPerspective实现。

cv::warpPerspective

函数语法:

  1. void cv::warpPerspective(
  2. InputArray src, // 输入图像
  3. OutputArray dst, // 输出图像
  4. InputArray M, // 3x3 透视变换矩阵
  5. Size dsize, // 输出图像的大小
  6. )

由此可知,函数warpPerspective通过变换矩阵将原始图像src转换为目标图像dst。因此,在通过透视变换对图像进行倾斜校正时,需要构造一个变换矩阵。0penCv提供的函数getPerspectiveTransform能够构造从原始图像到目标图像(矩阵)之间的变换矩阵M。

cv::getPerspectiveTransform

函数语法

  1. Mat cv::getPerspectiveTransform(
  2. InputArray src, // 输入图像中的四个点
  3. InputArray dst // 输出图像中的四个点
  4. );

通过轮廓查找,确定轮廓的逼近多边形,找到答题卡(待校正的不规则四边形)的四个顶点。由于并不知道这四个顶点分别是左上、右上、左下、右下四个顶点中的哪个顶点,因此需要在函数内先确定好这四个顶点分别对应左上、右上、左下、右下四个顶点中的哪个顶点。然后将这四个顶点和目标图像的四个顶点按照一致的排列方式传递给函数getPerspectiveTransform获取变换矩阵。最后根据变换矩阵,使用函数warpPerspective完成倾斜校正。

示例应用:倾斜校正、裁边处理

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. #include <vector>
  4. #include <cmath>
  5. // 自定义透视函数
  6. cv::Mat myWarpPerspective(const cv::Mat& image, const std::vector<cv::Point2f>& pts) {
  7. // step1:参数pts是要做倾斜校正的轮廓的逼近多边形(本题中的答题纸)的四个顶点,
  8. // 首先,确定四个顶点分别对应(左上、右上、右下、左下)的哪一个位置
  9. // step1.1:根据x轴值排序对4个点进行排序
  10. std::vector<cv::Point2f> xSorted = pts;
  11. std::sort(xSorted.begin(), xSorted.end(), [](const cv::Point2f& a, const cv::Point2f& b) { return a.x < b.x; });
  12. //step1.2:四个点划分为:左侧2个、右侧2个
  13. std::vector<cv::Point2f> left(xSorted.begin(), xSorted.begin() + 2);
  14. std::vector<cv::Point2f> right(xSorted.begin() + 2, xSorted.end());
  15. // step1.3:在左半边寻找左上角、左下角
  16. // 根据y轴的值排序
  17. std::sort(left.begin(), left.end(), [](const cv::Point2f& a, const cv::Point2f& b) { return a.y < b.y; });
  18. // 排在前面的是左上角(tl:top-left)、排在后面的是左下角(bl:bottom-left)
  19. cv::Point2f tl = left[0];
  20. cv::Point2f bl = left[1];
  21. // step1.4:根据右侧两个点与左上角点的距离判断右侧两个点的位置
  22. // 计算右侧两个点距离左上角点的距离
  23. std::vector<float> D;
  24. for (const auto& point : right) {
  25. D.push_back(cv::norm(tl - point));
  26. }
  27. // 右侧两个点,距离左上角远的点是右下角(br)的点,近的点是右上角的点(tr)
  28. cv::Point2f br = right[D[0] < D[1] ? 1 : 0];
  29. cv::Point2f tr = right[D[0] < D[1] ? 0 : 1];
  30. // step1.5:确定pts的四点分别属于(左上、左下、右上、右下)的哪一个
  31. std::vector<cv::Point2f> src = { tl, tr, br, bl };
  32. // step2:根据pts的四个顶点,计算出校正后图像的宽度和高度
  33. float widthA = std::sqrt(std::pow(br.x - bl.x, 2) + std::pow(br.y - bl.y, 2));
  34. float widthB = std::sqrt(std::pow(tr.x - tl.x, 2) + std::pow(tr.y - tl.y, 2));
  35. int maxWidth = static_cast<int>(std::max(widthA, widthB));
  36. float heightA = std::sqrt(std::pow(tr.x - br.x, 2) + std::pow(tr.y - br.y, 2));
  37. float heightB = std::sqrt(std::pow(tl.x - bl.x, 2) + std::pow(tl.y - bl.y, 2));
  38. int maxHeight = static_cast<int>(std::max(heightA, heightB));
  39. // 根据宽度、高度,构造新图像dst对应的的四个顶点
  40. std::vector<cv::Point2f> dst = {
  41. cv::Point2f(0, 0),
  42. cv::Point2f(maxWidth - 1, 0),
  43. cv::Point2f(maxWidth - 1, maxHeight - 1),
  44. cv::Point2f(0, maxHeight - 1)
  45. };
  46. // 构造从src到dst的透视变换矩阵
  47. cv::Mat M = cv::getPerspectiveTransform(src, dst);
  48. // 完成从src到dst的透视变换
  49. cv::Mat warped;
  50. cv::warpPerspective(image, warped, M, cv::Size(maxWidth, maxHeight));
  51. // 返回透视变换的结果
  52. return warped;
  53. }
  54. int main() {
  55. // 读取输入图像
  56. cv::Mat img = cv::imread("b.jpg");
  57. if (img.empty()) {
  58. std::cerr << "Could not open or find the image" << std::endl;
  59. return -1;
  60. }
  61. // 转换为灰度图像
  62. cv::Mat gray;
  63. cv::cvtColor(img, gray, cv::COLOR_BGR2GRAY);
  64. // 高斯模糊
  65. cv::Mat gaussian_blur;
  66. cv::GaussianBlur(gray, gaussian_blur, cv::Size(5, 5), 0);
  67. // 边缘检测
  68. cv::Mat edged;
  69. cv::Canny(gaussian_blur, edged, 50, 200);
  70. // 查找轮廓
  71. std::vector<std::vector<cv::Point>> contours;
  72. std::vector<cv::Vec4i> hierarchy;
  73. cv::findContours(edged, contours, hierarchy, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  74. cv::Mat paper;
  75. // 遍历每一个轮廓,找到答题纸的轮廓
  76. for (const auto& c : contours) {
  77. double peri = 0.01 * cv::arcLength(c, true);
  78. std::vector<cv::Point> approx;
  79. cv::approxPolyDP(c, approx, peri, true);
  80. // 四个顶点的轮廓是矩形(或者是由于扫描等原因由矩形变成的梯形)
  81. if (approx.size() == 4) {
  82. std::vector<cv::Point2f> points;
  83. for (const auto& point : approx) {
  84. points.push_back(cv::Point2f(point.x, point.y));
  85. }
  86. // 将外轮廓进行倾斜校正,将其构成一个矩形
  87. paper = myWarpPerspective(img, points);
  88. break;
  89. }
  90. }
  91. // 显示结果
  92. if (!paper.empty()) {
  93. cv::imshow("Paper", paper);
  94. cv::waitKey(0);
  95. }
  96. cv::destroyAllWindows();
  97. return 0;
  98. }

问题3:如何实现前景、背景的有效处理

为了取得更好的识别效果,将图像内色彩较暗的部分(如A、B、C、D选项,填涂的答案等)处理为白色(作为前景),将颜色较亮的部分(答题卡上没有任何文字标记的部分、普通背景等)处理为黑色(作为背景)。采用反二值化阈值处理可以实现上述功能。反二值化阈值处理将图像中大于阈值的像素点处理为黑色小于阈值的像素点处理为白色。将函数threshold的参数设置为“Cv2.THRESH BINARY INV|cV2.THRESH OTSU”,可以获取图像的反二值化阈值处理结果。 

问题4:如何找到答题卡内所有选项

利用函数findcontours可以找到图像内的所有轮廓,因此可利用该函数找到答题卡内的所有选项。需要注意的是,上述处理不仅会找到答题卡内的所有选项轮廓,还会找到大量其他轮廓,如文字描述信息的轮廓、噪声轮廓等。因此后续需要进行噪声处理和进一步筛选。

3.筛选出所有选项

需要将各选项轮廓筛选出来,具体的筛选原则如下:
(1)轮廓要足够大,不能太小,具体量化为长度大于25像素、宽度大于25像素。
(2)轮廓要接近于圆形,不能太扁,具体量化为纵横比介于[0.6,1.3]。
将所有轮廓依次按照上述条件进行筛选,满足上述条件的轮判定为选项;否则,判定为噪声(说明文字等其他信息的轮廓)

筛选轮廓:遍历所有轮廓,使用 cv::boundingRect 函数获取轮廓的矩形包围框,计算纵横比并筛选符合条件的轮廓。

cv::boundingRect

功能:计算包围某个轮廓的最小矩形的函数。

函数语法:

Rect cv::boundingRect(InputArray points);

points:输入的点集或轮廓,可以是一个二维点的数组或 std::vector<cv::Point>

返回类型为cv::Rect。

应用示例:找到答题卡内所有选项轮廓

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. #include <vector>
  4. int main() {
  5. // 读取输入图像
  6. cv::Mat thresh = cv::imread("thresh.bmp", cv::IMREAD_UNCHANGED);
  7. if (thresh.empty()) {
  8. std::cerr << "Could not open or find the image" << std::endl;
  9. return -1;
  10. }
  11. cv::imshow("thresh_original", thresh);
  12. // 查找所有的轮廓
  13. std::vector<std::vector<cv::Point>> cnts;
  14. std::vector<cv::Vec4i> hierarchy;
  15. cv::findContours(thresh.clone(), cnts, hierarchy, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  16. std::cout << "共找到各种轮廓 " << cnts.size() << " 个" << std::endl;
  17. // 筛选出选项的轮廓
  18. std::vector<std::vector<cv::Point>> options;
  19. for (const auto& ci : cnts) {
  20. // 获取轮廓的矩形包围框
  21. cv::Rect boundingBox = cv::boundingRect(ci);
  22. int x = boundingBox.x;
  23. int y = boundingBox.y;
  24. int w = boundingBox.width;
  25. int h = boundingBox.height;
  26. // ar纵横比
  27. float ar = w / static_cast<float>(h);
  28. // 满足长度、宽度大于25像素,纵横比在[0.6, 1.3]之间,加入到options中
  29. if (w >= 25 && h >= 25 && ar >= 0.6 && ar <= 1.3) {
  30. options.push_back(ci);
  31. }
  32. }
  33. // 需要注意,此时得到了很多选项的轮廓,但是他们在options是无规则存放的
  34. std::cout << "共找到选项 " << options.size() << " 个" << std::endl;
  35. // 将所有找到的选项轮廓绘制出来
  36. cv::Scalar color = cv::Scalar(0, 0, 255); // 红色
  37. // 为了以彩色显示,将原始图像转换为彩色空间
  38. cv::cvtColor(thresh, thresh, cv::COLOR_GRAY2BGR);
  39. // 绘制每个选项的轮廓
  40. cv::drawContours(thresh, options, -1, color, 5);
  41. // 显示结果
  42. cv::imshow("thresh_result", thresh);
  43. cv::waitKey();
  44. cv::destroyAllWindows();
  45. return 0;
  46. }

 结果如图:

4.将选项按题目分组

在默认情况下,所有轮廓是无序排列的,因此无法直接使用序号将其划分到不同的题目上。若将所有选项轮廓按照从上到下的顺序排列,则可以获得如图所示的排序规律。由于第1道题目的四个选项一定在第2道题目的四个选项的上方,所以第1道题目的四个选项的序号一定是{0、1、2、3}这四个值,但是具体哪个选项对应哪个值不确定。同理,第2道题目的四个选项一定在第3道题目的上方,所以第2道题目的四个选项的序号一定是{4、5、6、7} 这四个值,以此类推:

排序结果示意图

示例代码:确定选项大致序号,每道题选项序号再下一道题前面。

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. #include <vector>
  4. #include <algorithm>
  5. int main() {
  6. // 读取输入图像
  7. cv::Mat thresh = cv::imread("thresh.bmp", cv::IMREAD_UNCHANGED);
  8. if (thresh.empty()) {
  9. std::cerr << "Could not open or find the image" << std::endl;
  10. return -1;
  11. }
  12. // 查找所有的轮廓
  13. std::vector<std::vector<cv::Point>> cnts;
  14. std::vector<cv::Vec4i> hierarchy;
  15. cv::findContours(thresh.clone(), cnts, hierarchy, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  16. std::cout << "共找到各种轮廓 " << cnts.size() << " 个" << std::endl;
  17. // 将thresh转换为彩色图像,用于显示无序的轮廓编号
  18. cv::cvtColor(thresh, thresh, cv::COLOR_GRAY2BGR);
  19. cv::Mat result = thresh.clone(); // 用于显示排序后的轮廓编号
  20. // 筛选出选项的轮廓
  21. std::vector<std::vector<cv::Point>> options;
  22. cv::Scalar color = cv::Scalar(0, 0, 255); // 红色
  23. int font = cv::FONT_HERSHEY_SIMPLEX;
  24. for (size_t i = 0; i < cnts.size(); i++) {
  25. // 获取轮廓的矩形包围框
  26. cv::Rect boundingBox = cv::boundingRect(cnts[i]);
  27. int x = boundingBox.x;
  28. int y = boundingBox.y;
  29. int w = boundingBox.width;
  30. int h = boundingBox.height;
  31. // 计算纵横比
  32. float ar = w / static_cast<float>(h);
  33. // 满足长度、宽度大于25像素,纵横比在[0.6, 1.3]之间,加入到options中
  34. if (w >= 25 && h >= 25 && ar >= 0.6 && ar <= 1.3) {
  35. options.push_back(cnts[i]);
  36. // 绘制序号
  37. cv::putText(thresh, std::to_string(i), cv::Point(x-1, y-5), font, 0.5, color, 2);
  38. }
  39. }
  40. // 显示无序的选项编号
  41. cv::imshow("thresh", thresh);
  42. // 将轮廓按照从上到下的顺序排序
  43. std::vector<cv::Rect> boundingBoxes;
  44. for (const auto& opt : options) {
  45. boundingBoxes.push_back(cv::boundingRect(opt));
  46. }
  47. std::vector<std::pair<std::vector<cv::Point>, cv::Rect>> sortedOptions;
  48. for (size_t i = 0; i < options.size(); ++i) {
  49. sortedOptions.push_back(std::make_pair(options[i], boundingBoxes[i]));
  50. }
  51. std::sort(sortedOptions.begin(), sortedOptions.end(),
  52. [](const std::pair<std::vector<cv::Point>, cv::Rect>& a,
  53. const std::pair<std::vector<cv::Point>, cv::Rect>& b) {
  54. return a.second.y < b.second.y;
  55. });
  56. // 提取排序后的轮廓
  57. options.clear();
  58. for (const auto& item : sortedOptions) {
  59. options.push_back(item.first);
  60. }
  61. // 按照序号,显示排序后的轮廓
  62. for (size_t i = 0; i < options.size(); i++) {
  63. cv::Rect boundingBox = cv::boundingRect(options[i]);
  64. int x = boundingBox.x;
  65. int y = boundingBox.y;
  66. cv::putText(result, std::to_string(i), cv::Point(x-1, y-5), font, 0.5, color, 2);
  67. }
  68. // 显示排序后的结果
  69. cv::imshow("result", result);
  70. cv::waitKey();
  71. cv::destroyAllWindows();
  72. return 0;
  73. }

结果如图:

在此基础上,还需要将每道题目的4个选项按照从左到右的顺序排列,在具体实现中,根据各选项的坐标值,实现各选项按从左到右顺序排列。 

示例代码:

  1. // 将每一题目的四个选项筛选出来并显示
  2. for (size_t tn = 0; tn < options.size(); tn += 4) {
  3. // 将轮廓按照坐标实现自左向右顺次存放
  4. std::vector<cv::Rect> boundingBoxes;
  5. for (size_t i = tn; i < tn + 4 && i < options.size(); ++i) {
  6. boundingBoxes.push_back(cv::boundingRect(options[i]));
  7. }
  8. std::vector<std::pair<std::vector<cv::Point>, cv::Rect>> sortedCnts;
  9. for (size_t i = 0; i < boundingBoxes.size(); ++i) {
  10. sortedCnts.push_back(std::make_pair(options[tn + i], boundingBoxes[i]));
  11. }
  12. std::sort(sortedCnts.begin(), sortedCnts.end(),
  13. [](const std::pair<std::vector<cv::Point>, cv::Rect>& a,
  14. const std::pair<std::vector<cv::Point>, cv::Rect>& b) {
  15. return a.second.x < b.second.x;
  16. });
  17. // 构造图像image用来显示每道题目的四个选项
  18. cv::Mat image = cv::Mat::zeros(thresh.size(), CV_8UC3);
  19. // 针对每个选项单独处理
  20. for (size_t n = 0; n < sortedCnts.size(); ++n) {
  21. const auto& ni = sortedCnts[n].first;
  22. cv::Rect boundingBox = sortedCnts[n].second;
  23. int x = boundingBox.x;
  24. int y = boundingBox.y;
  25. int w = boundingBox.width;
  26. int h = boundingBox.height;
  27. cv::drawContours(image, std::vector<std::vector<cv::Point>>{ni}, -1, cv::Scalar(255, 255, 255), -1);
  28. cv::putText(image, std::to_string(n), cv::Point(x-1, y-5), font, 1, cv::Scalar(0, 0, 255), 2);
  29. }
  30. // 显示每个题目的四个选项及对应的序号
  31. cv::imshow("result" + std::to_string(tn / 4), image);
  32. }

 接下来按照 (一) 中单道题目的识别逻辑进行。

三.完整实现程序

1.实现代码

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. #include <vector>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <map>
  7. // 自定义函数,实现透视变换(倾斜校正)
  8. cv::Mat myWarpPerspective(const cv::Mat& image, const std::vector<cv::Point2f>& pts) {
  9. // 根据x轴值排序对4个点进行排序
  10. std::vector<cv::Point2f> xSorted = pts;
  11. std::sort(xSorted.begin(), xSorted.end(), [](const cv::Point2f& a, const cv::Point2f& b) { return a.x < b.x; });
  12. // 四个点划分为:左侧2个、右侧2个
  13. std::vector<cv::Point2f> left(xSorted.begin(), xSorted.begin() + 2);
  14. std::vector<cv::Point2f> right(xSorted.begin() + 2, xSorted.end());
  15. // 在左半边寻找左上角、左下角,根据y轴的值排序
  16. std::sort(left.begin(), left.end(), [](const cv::Point2f& a, const cv::Point2f& b) { return a.y < b.y; });
  17. cv::Point2f tl = left[0];
  18. cv::Point2f bl = left[1];
  19. // 根据右侧两个点与左上角点的距离判断右侧两个点的位置
  20. std::vector<float> D;
  21. for (const auto& point : right) {
  22. D.push_back(cv::norm(tl - point));
  23. }
  24. cv::Point2f br = right[D[0] < D[1] ? 1 : 0];
  25. cv::Point2f tr = right[D[0] < D[1] ? 0 : 1];
  26. // 确定pts的四点分别属于(左上、左下、右上、右下)的哪一个
  27. std::vector<cv::Point2f> src = { tl, tr, br, bl };
  28. // 根据pts的四个顶点,计算出校正后图像的宽度和高度
  29. float widthA = std::sqrt(std::pow(br.x - bl.x, 2) + std::pow(br.y - bl.y, 2));
  30. float widthB = std::sqrt(std::pow(tr.x - tl.x, 2) + std::pow(tr.y - tl.y, 2));
  31. int maxWidth = static_cast<int>(std::max(widthA, widthB));
  32. float heightA = std::sqrt(std::pow(tr.x - br.x, 2) + std::pow(tr.y - br.y, 2));
  33. float heightB = std::sqrt(std::pow(tl.x - bl.x, 2) + std::pow(tl.y - bl.y, 2));
  34. int maxHeight = static_cast<int>(std::max(heightA, heightB));
  35. // 根据宽度、高度,构造新图像dst对应的四个顶点
  36. std::vector<cv::Point2f> dst = {
  37. cv::Point2f(0, 0),
  38. cv::Point2f(maxWidth - 1, 0),
  39. cv::Point2f(maxWidth - 1, maxHeight - 1),
  40. cv::Point2f(0, maxHeight - 1)
  41. };
  42. // 构造从src到dst的透视变换矩阵
  43. cv::Mat M = cv::getPerspectiveTransform(src, dst);
  44. // 完成从src到dst的透视变换
  45. cv::Mat warped;
  46. cv::warpPerspective(image, warped, M, cv::Size(maxWidth, maxHeight));
  47. // 返回透视变换的结果
  48. return warped;
  49. }
  50. // 标准答案
  51. std::map<int, int> ANSWER = { {0, 1}, {1, 2}, {2, 0}, {3, 2}, {4, 3} };
  52. // 答案用到的字典
  53. std::map<int, std::string> answerDICT = { {0, "A"}, {1, "B"}, {2, "C"}, {3, "D"} };
  54. int main() {
  55. // 读取原始图像(考卷)
  56. cv::Mat img = cv::imread("b.jpg");
  57. if (img.empty()) {
  58. std::cerr << "Could not open or find the image" << std::endl;
  59. return -1;
  60. }
  61. // 图像预处理:色彩空间变换
  62. cv::Mat gray;
  63. cv::cvtColor(img, gray, cv::COLOR_BGR2GRAY);
  64. // 图像预处理:高斯滤波
  65. cv::Mat gaussian_blur;
  66. cv::GaussianBlur(gray, gaussian_blur, cv::Size(5, 5), 0);
  67. // 图像预处理:边缘检测
  68. cv::Mat edged;
  69. cv::Canny(gaussian_blur, edged, 50, 200);
  70. // 查找轮廓
  71. std::vector<std::vector<cv::Point>> cts;
  72. std::vector<cv::Vec4i> hierarchy;
  73. cv::findContours(edged.clone(), cts, hierarchy, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  74. // 轮廓排序
  75. std::sort(cts.begin(), cts.end(), [](const std::vector<cv::Point>& a, const std::vector<cv::Point>& b) {
  76. return cv::contourArea(a) > cv::contourArea(b);
  77. });
  78. std::cout << "寻找轮廓的个数:" << cts.size() << std::endl;
  79. int rightSum = 0;
  80. // 遍历每一个轮廓,找到答题纸的轮廓,将答题纸处理进行倾斜校正
  81. for (const auto& c : cts) {
  82. double peri = 0.01 * cv::arcLength(c, true);
  83. std::vector<cv::Point> approx;
  84. cv::approxPolyDP(c, approx, peri, true);
  85. std::cout << "顶点个数:" << approx.size() << std::endl;
  86. // 四个顶点的轮廓是矩形(或者是由于扫描等原因由矩形变成的梯形)
  87. if (approx.size() == 4) {
  88. std::vector<cv::Point2f> pts;
  89. for (const auto& p : approx) {
  90. pts.push_back(cv::Point2f(p.x, p.y));
  91. }
  92. // 将外轮廓进行倾斜校正,将其构成一个矩形
  93. cv::Mat paper = myWarpPerspective(img, pts);
  94. cv::Mat paperGray = myWarpPerspective(gray, pts);
  95. // 反二值化阈值处理,选项处理为白色,答题卡整体背景处理黑色
  96. cv::Mat thresh;
  97. cv::threshold(paperGray, thresh, 0, 255, cv::THRESH_BINARY_INV | cv::THRESH_OTSU);
  98. // 在答题纸内寻找所有轮廓
  99. std::vector<std::vector<cv::Point>> cnts;
  100. cv::findContours(thresh.clone(), cnts, hierarchy, cv::RETR_EXTERNAL, cv::CHAIN_APPROX_SIMPLE);
  101. // 用options来保存每一个选项(选中,未选中都放进去)
  102. std::vector<std::vector<cv::Point>> options;
  103. // 遍历每一个轮廓,将选项放入到options中
  104. for (const auto& ci : cnts) {
  105. // 获取轮廓的矩形包围框
  106. cv::Rect boundingBox = cv::boundingRect(ci);
  107. int x = boundingBox.x;
  108. int y = boundingBox.y;
  109. int w = boundingBox.width;
  110. int h = boundingBox.height;
  111. // 计算纵横比
  112. float ar = w / static_cast<float>(h);
  113. // 满足条件,加入到options中
  114. if (w >= 25 && h >= 25 && ar >= 0.6 && ar <= 1.3) {
  115. options.push_back(ci);
  116. }
  117. }
  118. // 将轮廓自上向下存放
  119. std::vector<cv::Rect> boundingBoxes;
  120. for (const auto& opt : options) {
  121. boundingBoxes.push_back(cv::boundingRect(opt));
  122. }
  123. std::vector<std::pair<std::vector<cv::Point>, cv::Rect>> sortedOptions;
  124. for (size_t i = 0; i < options.size(); ++i) {
  125. sortedOptions.push_back(std::make_pair(options[i], boundingBoxes[i]));
  126. }
  127. std::sort(sortedOptions.begin(), sortedOptions.end(),
  128. [](const std::pair<std::vector<cv::Point>, cv::Rect>& a,
  129. const std::pair<std::vector<cv::Point>, cv::Rect>& b) {
  130. return a.second.y < b.second.y;
  131. });
  132. // 提取排序后的轮廓
  133. options.clear();
  134. for (const auto& item : sortedOptions) {
  135. options.push_back(item.first);
  136. }
  137. // 处理每一道题的4个选项的轮廓
  138. for (size_t tn = 0; tn < options.size(); tn += 4) {
  139. // 将轮廓按照坐标实现自左向右顺次存放
  140. std::vector<cv::Rect> boundingBoxes;
  141. for (size_t i = tn; i < tn + 4 && i < options.size(); ++i) {
  142. boundingBoxes.push_back(cv::boundingRect(options[i]));
  143. }
  144. std::vector<std::pair<std::vector<cv::Point>, cv::Rect>> sortedCnts;
  145. for (size_t i = 0; i < boundingBoxes.size(); ++i) {
  146. sortedCnts.push_back(std::make_pair(options[tn + i], boundingBoxes[i]));
  147. }
  148. std::sort(sortedCnts.begin(), sortedCnts.end(),
  149. [](const std::pair<std::vector<cv::Point>, cv::Rect>& a,
  150. const std::pair<std::vector<cv::Point>, cv::Rect>& b) {
  151. return a.second.x < b.second.x;
  152. });
  153. // 构建列表ioptions,用来存储当前题目的每个选项(非零值个数,序号)
  154. std::vector<std::pair<int, int>> ioptions;
  155. // 提取出4个轮廓的每一个c,及序号ci
  156. for (size_t ci = 0; ci < sortedCnts.size(); ++ci) {
  157. const auto& c = sortedCnts[ci].first;
  158. // 构造一个核答题纸同尺寸的mask,灰度图像,黑色(值均为0)
  159. cv::Mat mask = cv::Mat::zeros(paperGray.size(), CV_8UC1);
  160. // 在mask内,绘制当前遍历到的选项轮廓
  161. cv::drawContours(mask, std::vector<std::vector<cv::Point>>{c}, -1, 255, -1);
  162. // 使用按位与运算的mask模式,提取出当前遍历到的选项
  163. cv::Mat masked;
  164. cv::bitwise_and(thresh, mask, masked);
  165. // 计算当前遍历到选项内非零值个数
  166. int total = cv::countNonZero(masked);
  167. // 将选项非零值个数、选项序号放入列表ioptions内
  168. ioptions.push_back(std::make_pair(total, ci));
  169. }
  170. // 将每道题的4个选项按照非零值个数降序排序
  171. std::sort(ioptions.begin(), ioptions.end(), [](const std::pair<int, int>& a, const std::pair<int, int>& b) {
  172. return a.first > b.first;
  173. });
  174. // 获取包含最多白色像素点的选项索引(序号)
  175. int choiceNum = ioptions[0].second;
  176. // 根据索引确定选项值:ABCD
  177. std::string choice = answerDICT[choiceNum];
  178. // 设定标注的颜色类型,绿对红错
  179. cv::Scalar color = (ANSWER[tn / 4] == choiceNum) ? cv::Scalar(0, 255, 0) : cv::Scalar(0, 0, 255);
  180. if (color == cv::Scalar(0, 255, 0)) {
  181. rightSum++;
  182. }
  183. cv::drawContours(paper, std::vector<std::vector<cv::Point>>{sortedCnts[choiceNum].first}, -1, color, 2);
  184. }
  185. std::string s1 = "total: " + std::to_string(ANSWER.size());
  186. std::string s2 = "right: " + std::to_string(rightSum);
  187. std::string s3 = "score: " + std::to_string(static_cast<double>(rightSum) / ANSWER.size() * 100);
  188. int font = cv::FONT_HERSHEY_SIMPLEX;
  189. cv::putText(paper, s1 + " " + s2 + " " + s3, cv::Point(10, 30), font, 0.5, cv::Scalar(0, 0, 255), 2);
  190. cv::imshow("score", paper);
  191. // 找到第一个具有4个顶点轮廓,就是答题纸,直接break跳出循环
  192. break;
  193. }
  194. }
  195. cv::waitKey(0);
  196. cv::destroyAllWindows();
  197. return 0;
  198. }

2.结果图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/811956
推荐阅读
相关标签
  

闽ICP备14008679号