是否可以将RGB图像转换为RGB+NIR图像?
您可以使用OpenCV这样的:
import cv2
fourChannel = cv2.cvtColor(threeChannel, cv2.COLOR_RGB2RGBA)
或者你可以使用Numpy创建一个新的空通道,大小和类型与原始通道相同,并将其堆叠到你的3通道图像上:
import numpy as np
newEmpty = np.zeros_like(threeChannel[...,0])
fourChannel = np.dstack((threeChannel, newEmpty))