如何处理以RIFF开头的图像编码

时间:2019-09-11 10:50:33

标签: numpy tensorflow image-processing riff

请提供有关此编码的帮助,结果发现RIFF开头不允许我对图像进行解码。我正在使用tensorflow,我将在下面放置代码的副本。我需要其他方式来处理这种numpy编码。

>>>img_raw = tf.io.read_file(img_path)
print(repr(img_raw)[:100]+"...")

>>>img_tensor = tf.image.decode_jpeg(img_raw, channels=3)
img_tensor = tf.convert_to_tensor((img_tensor))
# print(img_tensor)
print(img_tensor.shape)
print(img_tensor.dtype)

this is the beginning of the numpy encoding

>>>b'RIFF`\xd4\x00\x00WEBPVP8 T\xd4\x00\x00p~\x02\x9d\x01*\x89\x02m\x01>A\x16\x88D"\xa1!\x1e\x7fn<(\x04\x04\xb2\xb6\x99\xb1\x8dS\x1a\xe1Cl\x0

0 个答案:

没有答案