Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在用 Python 玩 OpenCV 3.1.0。我的代码运行良好,但是当需要将其写入 TIFF 文件时,会发生这种情况:
前:
后:
我的重现此代码的代码实际上是两行:
f = cv2.imread('f.tif', 0) cv2.imwrite('test.tif', f)
根据 ImageMagick 的说法,两者f.tif和结果都是 8 位灰度 TIFF 文件。test.tif
f.tif
test.tif
将图像写入 PNG 而不是 TIFF 就可以了。