当前位置:网站首页>[opencv practice] this seal "artifact" is awesome, saving time and improving efficiency. It is powerful ~ (complete source code attached)
[opencv practice] this seal "artifact" is awesome, saving time and improving efficiency. It is powerful ~ (complete source code attached)
2022-06-10 23:54:00 【Programmer pear】
Preface
author :“ Programmer pear ”
** The article brief introduction **: This article is mainly about opencv Small program for extracting seal text !
** The source code of the article is available for free : In order to thank everyone who pays attention to me, the project source code of each article is none
Compensation sharing drop
Welcome friends give the thumbs-up 、 Collection 、 Leaving a message.
Text

This issue is about using opencv Extract seal , Many times we need electronic version of the chapter , So let's use the code today
extracted !
Photoshop Although powerful , But how can Xiaobian not make , Yesterday, a little friend asked me if I could help , see ?PS though
But I won't , But I can write code ! It's hard not to beat me ! Arrange... Arrange ~
( Special reminder : All the friends who like designing and drawing , Remember never to help your boss or friends PS Fake public
Chapter , Criminal Law No 280 This article specifically states that , Forged certificate seal , It can be investigated for criminal responsibility , Don't do anything illegal .)
Tutorial delivery , The source code is in the blue font at the end of the text or above. Take it for free —— Come on !

1) Effect display
Original picture ——

design sketch ——

2) Source code display
import cv2
import numpy as np
class Seal:
def __init__(self, img_path):
"""
Initialize picture
:param img_path: Original image path """
self.image = cv2.imread(img_path)
self.img_shape = self.image.shape
self.file_name = img_path.split('.')[0].split('\\')[-1]
def unify_img_size(self):
"""
Uniform picture size
:return: Return an unprocessed target image """
img_w = 650 if self.img_shape[1] > 600 else 400
self.image = cv2.resize(self.image, (img_w, int(img_w * self.img_shape[0] / self.img_shape[1])), interpolation=cv2.IMREAD_COLOR)
impng = cv2.cvtColor(self.image.copy(), cv2.COLOR_RGB2RGBA)
return impng
def img_binaryzation(self,hue_image, low_range, high_range, imgpng):
th = cv2.inRange(hue_image, low_range, high_range)
element = cv2.getStructuringElement(cv2.MORPH_RECT, (1, 1))
th = cv2.dilate(th, element)
index1 = th == 255
print_img = np.zeros(imgpng.shape, np.uint8)
print_img[:, :, :] = (255, 255, 255, 0)
print_img[index1] = imgpng[index1] # (0,0,255)
return print_img
def img_enhance(self):
imgpng = self.unify_img_size()
hue_image = cv2.cvtColor(self.image, cv2.COLOR_BGR2HSV) # Process image hue
low_range = np.array([130, 43, 46]) # Set the lower boundary
high_range = np.array([180, 255, 255]) # Set the upper boundary
print1 = self.img_binaryzation(hue_image, low_range, high_range, imgpng)
low_range = np.array([0, 43, 46])
high_range = np.array([9, 255, 255])
print2 = self.img_binaryzation(hue_image, low_range, high_range, imgpng)
imgreal = cv2.add(print2, print1)
white_px = np.asarray([255, 255, 255, 255])
(row, col, _) = imgreal.shape
for r in range(row):
for c in range(col):
px = imgreal[r][c]
if all(px == white_px):
imgreal[r][c] = imgpng[r][c]
return imgreal
def extension_img(self):
"""
edge detection , Intercept and output the results
:return:
"""
imgreal = self.img_enhance()
# Expand the picture to prevent interception
print4 = cv2.copyMakeBorder(imgreal, 50, 50, 50, 50, cv2.BORDER_CONSTANT, value=[255, 255, 255, 0])
print2gray = cv2.cvtColor(print4, cv2.COLOR_RGBA2GRAY)
_, grayfirst = cv2.threshold(print2gray, 254, 255, cv2.THRESH_BINARY_INV)
element = cv2.getStructuringElement(cv2.MORPH_RECT, (22, 22))
img6 = cv2.dilate(grayfirst, element)
c_canny_img = cv2.Canny(img6, 10, 10)
contours, hierarchy = cv2.findContours(c_canny_img, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)
areas = []
for i, cnt in enumerate(contours):
x, y, w, h = cv2.boundingRect(cnt)
area = w * h
ars = [area, i]
areas.append(ars)
areas = sorted(areas, reverse=True)
maxares = areas[:1]
x, y, w, h = cv2.boundingRect(contours[maxares[0][1]])
print5 = print4[y:(y + h), x:(x + w)]
# Height is less than width
if print5.shape[0] < print5.shape[1]:
zh = int((print5.shape[1] - print5.shape[0]) / 2)
print5 = cv2.copyMakeBorder(print5, zh, zh, 0, 0, cv2.BORDER_CONSTANT, value=[255, 255, 255, 0])
else:
zh = int((print5.shape[0] - print5.shape[1]) / 2)
print5 = cv2.copyMakeBorder(print5, 0, 0, zh, zh, cv2.BORDER_CONSTANT, value=[255, 255, 255, 0])
resultprint = cv2.resize(print5, (150, 150))
cv2.imwrite(r'output\{}_result.png'.format(self.file_name), resultprint)
if __name__ == '__main__':
s = Seal(r"src\2.jpg")
s.extension_img()summary
The effect is very good , Interested friends can try it ~
Follow Xiaobian for more wonderful content ! Remember to click on the portal
Remember Sanlian ! If you need packaged source code + Free sharing of materials !! Portal

边栏推荐
猜你喜欢

LabVIEW和VDM提取色彩和生成灰度图像

LabVIEW error "memory full - Application stopped on node"

What Fiddler does for testing

LabVIEW programming specification

Developers changing the world - Yao Guang teenagers playing Tetris

黑马头条丨腾讯薪酬制度改革引争议;英特尔全国扩招女工程师;黑马100%就业真的吗......

LabVIEW 禁止其他可多核心处理的应用程序在所有核心上执行

Leetcode 501: mode dans l'arbre de recherche binaire

Redis installation and common problem solving based on centeros7 (explanation with pictures)

【无标题】
随机推荐
LeetCode 501 :二叉搜索树中的众数
Common settings for vs
Unity 脚本无法显示C#源码的中文注释 或者VS创建的脚本没有C#源码的注释
Self made app connected to onenet --- realize data monitoring and distribution control (mqtt)
LabVIEW pictures look bright or dark after being cast from 16 bits to 8 bits
Fiddler creates an autoresponder
How to measure the refresh rate of oscilloscope
Serial port missing in Ni Max in LabVIEW
LabVIEW中NI MAX中缺少串口
Leetcode 501: mode dans l'arbre de recherche binaire
SystemVerilog(十)-用户自定义类型
LabVIEW调用DLL时出现异常0xc0000005代码
Prefer "big and small weeks", only write 200 lines of code every day, and the monthly salary of 8k-17k people will rise again
宁愿“大小周”、每天只写 200 行代码、月薪 8k-17k 人群再涨
[paper sharing] pata: fuzzing with path aware Taint Analysis
ILRuntime热更框架 安装以及断点调试
The shell script of pagoda plan task regularly deletes all files under a directory [record]
Data file nc6oa Txt consists of 6830 gene expression data from 33 cancer cell lines, each of which is a type of cancer cell. Please cluster the 33 cell lines according to the gene expression data (the
Im instant messaging source code with tutorial /uniapp instant messaging source code, with installation tutorial
LabVIEW用高速数据流盘
