下面函数中的参数4是什么意思?
Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4);发布于 2017-05-16 13:45:58
Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4);4是目标图像中的通道数。
如果参数为0,则通道数自动从src和code派生。
cvtColor Converts an image from one color space to another.语法
cvtColor(Mat src, Mat dst, int code, int dstCn)更多信息Here
https://stackoverflow.com/questions/43993259
复制相似问题