1

我正在阅读从互联网上获取的图像,然后立即在 python 中读入 OpenCV,如下所示:

# read in image as bytes from page
image = page.raw_stream.read()
frame = cv2.imdecode(np.asarray(bytearray(image)), 0)

我收到了 libpng 警告:

libpng warning: iCCP: known incorrect sRGB profile

如何在读取之前剥离 sRGB 配置文件?人们建议在阅读它们之前通过 png 文件上的 imagemagick 来执行此操作,但这对我来说是不可能的。有没有办法直接在python中做到这一点?

编辑:

如果我使用https://uploadfiles.io/m1w2l上的文件运行它并使用代码,我无法在下面的答案中获得代码来解决我的问题:

import cv2
import numpy as np

with open('data/47.png', 'rb') as test:
   image = np.asarray(bytearray(test.read()), dtype="uint8")
   image = cv2.imdecode(image, cv2.IMREAD_COLOR)

我得到同样的警告

4

1 回答 1

4

使用urllib

import cv2
import urllib

resp = urllib.request.urlopen('https://i.imgur.com/QMPkIkZ.png')
image = np.asarray(bytearray(resp.read()), dtype="uint8")
image = cv2.imdecode(image, cv2.IMREAD_COLOR)

使用skimage

import cv2
from skimage import io

image = io.imread('https://i.imgur.com/QMPkIkZ.png')
image = cv2.cvtColor(image, cv2.COLOR_RGBA2BGRA)

如果您使用 OpenCV 得到一个奇怪的显示cv2.imshow,请记住 OpenCV 不显示 alpha 通道。

于 2018-05-25T13:09:37.660 回答