cv2.inRange()函数---提取票据中红色印章

这个函数的参数有三个
第一个参数:hue_image指的是原图

第二个参数:lower_red指的是图像中低于这个lower_red的值,图像值变为0

第三个参数:upper_red指的是图像中高于这个upper_red的值,图像值变为0

而在lower_red~upper_red之间的值变成255

用来提取票据的印章

import cv2
import numpy as np

np.set_printoptions(threshold=np.inf) #当数组元素比较多的时候,如果输出该数组,那么会出现省略号
image=cv2.imread("0002.png")
image = cv2.resize(image,None,fx=0.5,fy=0.5)

hue_image = cv2.cvtColor(image, cv2.COLOR_BGR2HSV)
low_range = np.array([150, 103, 170])
high_range = np.array([190, 255, 255])
th = cv2.inRange(hue_image, low_range, high_range)
index1 = th == 255

img = np.zeros(image.shape, np.uint8)
img[:, :] = (255,255,255)
img[index1] = image[index1]#(0,0,255)
img0 = image
cv2.imshow('original_img', image)
cv2.imshow('extract_img', img)
cv2.imwrite('original_img.png', image)
cv2.imwrite('extract_img.png', img)

原图:

cv2.inRange()函数---提取票据中红色印章_第1张图片

 

 

提取印章:

cv2.inRange()函数---提取票据中红色印章_第2张图片

 

你可能感兴趣的:(计算机视觉,人工智能)