代码拉取完成,页面将自动刷新
# coding=gbk
import cv2
import numpy as np
img = cv2.imread('1.jpg')
cv2.imshow('card', img)
img = cv2.imread('1.jpg', 0)
cv2.imshow('gary', img)
height, width = img.shape
# 对图像进行二值化处理
thres, binary = cv2.threshold(img, 0, 255, cv2.THRESH_OTSU + cv2.THRESH_BINARY_INV)
cv2.imshow('threshold', binary)
# print(img.shape)
paint = np.zeros(img.shape, dtype=np.uint8)
# 每一列黑色像素个数
pointSum = np.zeros(width, dtype=np.uint8)
for x in range(width):
for y in range(height):
if binary[y][x]:
pointSum[x] = pointSum[x] + 1
for x in range(width):
for y in range(height)[::-1]:
if (pointSum[x]):
paint[y][x] = 255
pointSum[x] = pointSum[x] - 1
cv2.imshow('paint', paint)
cv2.waitKey(0)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。