我想对图像进行解码并对其进行矩阵处理以进行进一步处理。在执行以下代码后,我只会得到一个空列表
from pyzbar.pyzbar import decode
from PIL import Image
decode(Image.open("here.png"))
答案 0 :(得分:0)
为此目的使用OpenCV怎么样?这是一个功能强大的图像处理库
import cv2 #importing opencv
img = cv2.imread('filename.jpg', 0)
#1st param: image file. 2nd param: 1 - color, 0 - grayscale
#img contains a matrix of the image file