📜  python 导出 16 位 tiff - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:47.741000             🧑  作者: Mango

代码示例1
>>> import skimage.io
>>> im = skimage.io.imread('a.tif', plugin='tifffile')
>>> im.dtype
dtype('uint16')
>>> im.shape
(288, 384, 3)
>>> im = skimage.io.imread('a.tif', plugin='freeimage')
>>> im.dtype
dtype('uint16')
>>> im.shape
(288, 384, 3)