我有一个图像序列,我正在尝试在特定帧上运行脚本。我需要切换到此帧并将其转换为数组。但是,我不能,因为框架是一个实例<TiffImagePlugin.TiffImageFile image mode=I;16 size=512x512 at 0x104A0C998>
。如何将此实例转换为数组?我已经使用了 numpy.array 并且它不起作用。谢谢!
prot=Image.open("F23BN.tif")
for frame in ImageSequence.Iterator(dna):
if frame==16:
frame.convert('L')
print frame.mode, frame.format #I checked the format and it is still in the Instance format