当前位置:   article > 正文

opencv——实战(一)_opencv测试用图片

opencv测试用图片

准备

  1. python环境
  2. pycharm编译器
  3. opencv库安装

实战

  1. 测试用图:
    在这里插入图片描述
    在这里插入图片描述
  2. 代码实现
import cv2 as cv
import numpy as np


card = cv.imread("D:/pics/card.png")
num = cv.imread("D:/pics/num.png")


# 命名窗口并打开图像
def show_image(win_name, image_src):
    cv.namedWindow(win_name, cv.WINDOW_AUTOSIZE)  # 命名窗口
    cv.imshow(win_name, image_src)  # 显示窗口


# 字模预处理
def num_preInit():
    show_image("num", num)

    # 转换为灰度图,并展示
    numGray = cv.cvtColor(num, cv.COLOR_BGR2GRAY)

    # 二值化,10为阈值,THRESH_BINARY_INV:反转二值
    ret, num2Value = cv.threshold(numGray, 10, 255, cv.THRESH_BINARY_INV)

    # 对字模轮廓检测:cv.RETR_EXTERNAL只检测外轮廓
    contours, hierarchy = cv.findContours(num2Value, cv.RETR_EXTERNAL, cv.CHAIN_APPROX_SIMPLE)
    cv.drawContours(num, contours, -1, (0, 0, 255), 3)

    # 挖出各个字模
    single_num = {
   }
    minBox = [cv.boundingRect(c) for c in contours] # 取最小外接矩形
    nsize =  len(minBox)
    for i in 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/678980
推荐阅读
相关标签
  

闽ICP备14008679号