以下函数中参数4
的含义是什么?
Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4);
答案 0 :(得分:1)
Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4);
4是目标图像中的通道数。
如果参数为0,则从src和代码自动导出通道数。
cvtColor Converts an image from one color space to another.
语法
cvtColor(Mat src, Mat dst, int code, int dstCn)
更多信息Here