时间:2021-05-22
我就废话不多说了,大家还是直接看代码吧!
print("thresh =",thresh)coords = np.column_stack(np.where(thresh > 0))//获取thresh二值灰度图片中的白色文字区域的点print("coords =",coords)min_rect = cv2.minAreaRect(coords)//由点集获取最小矩形(包含中心坐标点、宽和高、偏转角度)print("min_rec =",min_rect)box = cv2.boxPoints(min_rect)//获取最小矩形的4个顶点坐标。但是通过一下这个绘制矩形函数,画出来上述的最小矩形与文字区域偏差很大,但是获取到的偏转角度是对的。
不明白他们什么关系啊?
# 根据四点画原矩形def drawRect(img, pt1, pt2, pt3, pt4, color, lineWidth): cv2.line(img, tuple(pt1), tuple(pt2), color, lineWidth) cv2.line(img, tuple(pt2), tuple(pt3), color, lineWidth) cv2.line(img, tuple(pt3), tuple(pt4), color, lineWidth) cv2.line(img, tuple(pt1), tuple(pt4), color, lineWidth)有哪路朋友路过,帮一下忙,给指点一二,多谢朋友
附实验问题截图:
补充知识:opencv2 3.2 类中实现提取蓝天颜色
我就废话不多说了,大家还是直接看代码吧!
#include<iostream>#include<opencv2/core/core.hpp>#include<opencv2/highgui/highgui.hpp>using namespace std;using namespace cv;class ColorDetector{private:int maxDist; //最小差距Vec3b target ; //目标颜色Mat result;public:ColorDetector():maxDist(100),target(0,0,0){}void setColorDistanceThreshold(int distance) //设置颜色差距的阈值{if(distance<0)distance=0;maxDist=distance;}int getColorDistanceThreshold() const //取得颜色差距的阈值{return maxDist;}void setTargetColor(uchar blue,uchar green,uchar red) //设置需要检测的颜色{target=Vec3b(blue,green,red);}void setTargetColor(Vec3b color){target=color;}Vec3b getTargetColor() const{return target;}Mat process(const cv::Mat &image) ;int getDistance(const Vec3b &color) ;};Mat ColorDetector::process(const cv::Mat &image) {result.create(image.rows,image.cols,CV_8U);Mat_<Vec3b>::const_iterator it=image.begin<Vec3b>();Mat_<Vec3b>::const_iterator itend=image.end<Vec3b>();Mat_<uchar>::iterator itout=result.begin<uchar>();for ( ; it!= itend; ++it, ++itout) {if (getDistance(*it)<maxDist) {*itout=255;} else {*itout=0;}}return result;}int ColorDetector::getDistance(const Vec3b &color) {return abs(color[0]-target[0])+abs(color[1]-target[1])+abs(color[2]-target[2]);}void main(){ColorDetector cdetect;Mat img=imread("C:\\Users\\Administrator\\Desktop\\工作\\testp\\boldt.jpg");if(img.empty())return;cdetect.setTargetColor(230,190,130);imshow("original",img);imshow("result",cdetect.process(img));waitKey(0);}以上这篇python3+openCV 获取图片中文本区域的最小外接矩形实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了Opencv实现最小外接矩形和圆的具体代码,供大家参考,具体内容如下步骤:将一幅图像先转灰度,再canny边缘检测得到二值化边缘图像,再寻找
本文实例为大家分享了OpenCV鼠标绘制截取矩形区域图像的具体代码,供大家参考,具体内容如下在opencv中利用鼠标绘制矩形,代码如下:#include#inc
利用opencv来识别图片中的矩形。其中遇到的问题主要是识别轮廓时矩形内部的形状导致轮廓不闭合。1.对输入灰度图片进行高斯滤波2.做灰度直方图,提取阈值,做二值
本文实例为大家分享了python实现图片中文字分割的具体代码,供大家参考,具体内容如下1、原始图片(包含数字):结果图:2、原始图片(包含文字):结果图:3、代
word2010删除回车符的方法是: 1、打开一个Word文档,右键点击文本区域,选择【段落】选项。 2、进入段落属性对话框,点击上方【中文版式】。 3、