以下函数中的4参数是什么意思?

Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4);

最佳答案

Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4);

4是目标图像中的 channel 数。

如果参数为0,则通道数是从src和code自动得出的。
cvtColor Converts an image from one color space to another.

句法
cvtColor(Mat src, Mat dst, int code, int dstCn)

更多信息Here

10-08 16:26