OpenCV 银行卡卡号识别

本文详细介绍了利用OpenCV实现银行卡卡号识别的四个步骤:处理数字模板、选取银行卡上的数字、剔除非卡号数字以及通过模板匹配识别每个数字。通过这些步骤,可以有效地实现自动识别银行卡上的卡号。
摘要由CSDN通过智能技术生成

银行卡卡号识别步骤

1.对模板数字进行处理,得到每个模板的数字。

代码如下(示例):

import cv2
import numpy as np

def sort_contours(cnts,method = 'left-to-right'):
    reverse = False
    i = 0
    if method =='right-to-left' or method =='bottom-to-top':
        reverse = True
    if method == 'top-to-bottom'or method =='bottom-to-top':
        i = 1
    boundingBoxes = [cv2.boundingRect(cnt)for cnt in cnts]
    (cnts,boundingBoxes) = zip(*sorted(zip(cnts,boundingBoxes),
                                    key = lambda b: b[1][i],
                                     reverse = reverse))
    return cnts,boundingBoxes
    
 def cv_show(name,img):#定义一个函数
    cv2.imshow(name,img)
    cv2.waitKey()
    cv2.destroyAllWindows()

img = cv2.imread('ocr_a_reference.png')#读模板
# cv_show('img',img)
img_gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
                                #色彩空间转化,转化为灰度图
# cv_show('img_gray',img_gray)
ret,img_binary = cv2.threshold(img_gray,127,255,1)#二值化
cv_show('img_binary',img_binary)
   
cnts,hierarchy = cv2.findContours(img_binary,cv2.RETR_EXTERNAL,
                                  cv2.CHAIN_APPROX_SIMPLE)
                                    #查找外轮廓
img_rect = cv2.drawContours(img,cnts,-1,(0,0,255),2)# 绘制轮廓
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值