yatengLG/ISAT_with_segment_anything

通道数检测错误导致无法用sam模型

Closed this issue · 3 comments

上传3通道的图片到程序,显示通道数为4,不能用sam模型

那肯定是你图片是4通道的。

用下面代码看通道吧。

import numpy as np
from PIL import Image

image_path = ""
image_data = np.array(Image.open(image_path))
print(image_data.shape)

想用sam处理你的图片,可以自行转换通道后再使用。

参考 #202

哦哦感谢,之前通道数确实有问题