标签: python image numpy tiff
我有一个8位的tiff文件,我使用tifffile这样打开
import tifffile as tiff a=tiff.imread(path_to_file)
然而,a.dtype然后返回dtype('uint16'),即它似乎已将其转换为16位文件。我无法找到一个可以传递给imread的选项来防止这种情况发生。是否可以在不更改类型的情况下将文件读入numpy数组?
a.dtype
dtype('uint16')