Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 280 Bytes

颜色空间转换.md

File metadata and controls

13 lines (12 loc) · 280 Bytes

#颜色空间转换

样例:

	Mat srcImg = Imgcodecs.imread("2.jpg");
    Mat image = new Mat();
    if (srcImg.empty()){
        System.out.println("图片不存在");
        return;
    }
	// 转为 hsv 空间
    Imgproc.cvtColor(srcImg,image,Imgproc.COLOR_BGR2HSV);