opencv+python实现图像矫正
作者:椰树林YSL 时间:2022-09-28 09:28:14
本文实例为大家分享了opencv+python实现图像矫正的具体代码,供大家参考,具体内容如下
需求:将斜着拍摄的文本图像进行矫正
python代码
import numpy as np
import cv2 as cv
def shape_correction(img):
(height, width) = img.shape[:2]
print(img.shape)
img_gau = cv.GaussianBlur(img, (5, 5), 0)
canny = cv.Canny(img_gau, 60, 200)
# cv.imshow("g-canny", canny)
kernel = cv.getStructuringElement(cv.MORPH_CROSS, (4,3))
dilated = cv.dilate(canny, kernel, iterations=8)
# cv.imshow('img_dilated', dilated)
# 寻找轮廓
contours, hierarchy = cv.findContours(dilated, cv.RETR_EXTERNAL, cv.CHAIN_APPROX_NONE)
# print(len(contours), hierarchy, sep='\n')
# 找到最外层面积最大的轮廓
area = 0
# print("area:{}".format(area))
index = 0
for i in range(len(contours)):
x, y, w, h = cv.boundingRect(contours[i])
# 排除非文本区域
if w < 35 and h < 35:
continue
# 防止矩形区域过大不精准
if h > 0.99 * height or w > 0.99 * width:
continue
# draw rectangle around contour on original image
# cv.rectangle(img, (x, y), (x + w, y + h), (255, 0, 255), 2)
tmpArea = w * h
if tmpArea >= area:
area = tmpArea
index = i
# 得到最小外接矩形的(中心(x,y), (宽,高), 旋转角度)
rect = cv.minAreaRect(contours[index])
# 画出矩形框
# box = cv.boxPoints(rect)
# box = np.int0(box)
# cv.drawContours(img, [box], 0, (0, 0, 255), 2)
# cv.imshow('img', img)
print("rect:{}".format(rect))
angle = rect[-1]
# print(angle)
# 角度大于85度或小于5度不矫正
if angle > 85 or angle < 5:
angle = 0
elif angle < 45:
angle = angle - 0
else:
angle = angle - 90
M = cv.getRotationMatrix2D(rect[0], angle, 1)
rotated = cv.warpAffine(img, M, (width, height), flags=cv.INTER_CUBIC, borderValue=(255, 255, 255))
cv.imshow('Rotated', rotated)
return rotated
src = cv.imread('/res-normal.png', 0)
rotated = shape_correction(src)
cv.waitKey(0)
算法流程
算法核心思想:
获取图像中的文本区域矩形轮廓,找到其中面积最大的,对其进行最小外接矩形计算,得到最小外接矩形的旋转角度,再根据旋转角度进行仿射变换。
测试效果
来源:https://blog.csdn.net/xsydalao/article/details/121544626
标签:opencv,python,图像矫正
0
投稿
猜你喜欢
python中opencv实现文字分割的实践
2022-08-02 20:42:48
详解Python3的TFTP文件传输
2023-06-01 22:29:17
用javascript判断浏览器版本
2008-04-21 13:50:00
Python全面解析json数据并保存为csv文件
2021-02-14 03:26:26
javascript中传统事件与现代事件
2024-04-10 11:02:57
sqlserver锁表、解锁、查看销表的方法
2024-01-12 15:57:38
python用装饰器自动注册Tornado路由详解
2021-07-16 07:53:37
python 根据正则表达式提取指定的内容实例详解
2023-07-18 01:23:48
Centos 6.5系统下编译安装PHP 7.0.13的方法
2023-06-07 13:04:26
通过自学python能找到工作吗
2021-07-24 04:26:33
CentOS 7 安装 MySQL 5.6遇到的各种问题小结
2024-01-20 23:51:39
mysql 获取规定时间段内的统计数据
2024-01-24 11:25:10
Python Django路径配置实现过程解析
2023-11-13 20:50:02
python 3.10上如何安装pyqt5
2022-04-09 23:59:53
Pycharm 2019 破解激活方法图文详解
2023-10-31 10:49:04
使用python实现baidu hi自动登录的代码
2021-11-23 14:54:32
详解Angular之constructor和ngOnInit差异及适用场景
2024-05-11 09:18:16
Python2与Python3的区别实例总结
2021-05-20 00:04:24
Python常见数据结构之栈与队列用法示例
2023-11-03 20:58:10
sqlserver中获取月份的天数的方法分享
2011-09-30 11:27:52