gpt4 book ai didi

opencv - 如何在OpenCV中输出和索引(黑白)Tiff图像

转载 作者:行者123 更新时间:2023-12-02 17:21:39 26 4
gpt4 key购买 nike

如果我对二进制图像进行imwrite编码,它将仅创建灰度图像文件,而不创建indexed = 2文件。我需要在imwrite上执行哪些操作?如果可能的话,我也希望LZW压缩。

  orig = cv2.imread('rgb.tiff')
work = cv2.cvtColor(orig, cv2.COLOR_BGR2GRAY)
work = cv2.ximgproc.niBlackThreshold(work, 255, cv2.THRESH_BINARY, 41, -0.2,
binarizationMethod=cv2.ximgproc.BINARIZATION_NICK)
cv2.imwrite('bw.tiff', work)

grayscale vs indexed

最佳答案

如果您确实想要双LZW压缩的TIFF,则可以使用编写这样的代码:

#!/usr/bin/env python3

from wand.image import Image

# Open image and save as bi-level LZW-compressed version
with Image(filename='image.tif') as img:
img.compression='lzw'
img.type='bilevel'
img.save(filename='result.tif')

输入:

enter image description here

结果:

enter image description here

请注意,您可以像这样保存 OpenCV 图像,但是必须首先将其BGR顺序转换为常规RGB顺序。您可以使用:
RGB = cv2.cvtColor(BGRimage, cv2.COLOR_BGR2RGB)

或纯Numpy:
RGB = BGRimage[...,::-1]

关键字:Python,图像处理,魔杖,TIFF,TIF,LZW,压缩,压缩,双层,双层

关于opencv - 如何在OpenCV中输出和索引(黑白)Tiff图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61979783/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com