一、清楚自己输入的是单通道图像还是多通道图像 二、如果是单通道,直接 cv2.imread(tmp_path, 0)以单通道模式读,就不要以多通道的模式读了 比如 1,不然 cv2.cvtColor 它会报错的 1.