在下面的代码中,我正在读取图像并显示它具有的通道数及其深度。
结果是通道:3 和深度:0
据我所知,深度应该代表每个通道的位数。
深度为零是什么意思?
代码:
public static void main(String[] args) {
System.loadLibrary(org.opencv.core.Core.NATIVE_LIBRARY_NAME);
Mat imgSrc = new Mat();
imgSrc = Highgui.imread(PATH);
if (imgSrc.empty()) {
System.out.println("image is empty");
return;
}
System.out.println("channels: " + imgSrc.channels());
System.out.println("depth: " + imgSrc.depth());
}
}