Java中的OpenCV drawContours [英] OpenCV drawContours in Java

查看:3363
本文介绍了Java中的OpenCV drawContours的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在图像中的对象周围绘制轮廓但我得到错误
OpenCV错误:不支持的格式或格式组合([Start] FindContours仅在模式时支持CV_8UC1图像!= CV_RETR_FLOODFILL否则仅支持cvStartFindContours中的CV_32SC1图像,文件C:\ buildid \ master_PackSlaveAddon-win64-vc12-static \opencv \modules \ imgproc \ src \ contours.cpp,198行

I'm trying to draw contours around object in image but i get error OpenCV Error: Unsupported format or combination of formats ([Start]FindContours supports only CV_8UC1 images when mode != CV_RETR_FLOODFILL otherwise supports CV_32SC1 images only) in cvStartFindContours, file C:\builds\master_PackSlaveAddon-win64-vc12-static\opencv\modules\imgproc\src\contours.cpp, line 198

我试图转换图片但是错误仍然存​​在如何使用DrawContour?

I tried to convert image but error is still there how to use DrawContour?

 Mat imageInMat = Imgcodecs.imread("C:/Users/ja/workspace/imgtomath/bin/imgtomath/lena.png");
         if(imageInMat.empty()== true)
             {System.out.println("Error no image found!!");}

         imageInMat.convertTo(imageInMat, CvType.CV_32SC1);

         List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
            Mat hierarchy = new Mat();
            Imgproc.findContours(imageInMat, contours, hierarchy, Imgproc.RETR_FLOODFILL, Imgproc.CHAIN_APPROX_SIMPLE);

        Imgproc.drawContours(imageInMat, contours, -1, new Scalar(255,0,0));


推荐答案

它应该可以正常工作:

Mat image = Imgcodecs.imread("C:/Users/ja/workspace/imgtomath/bin/imgtomath/lena.png");
if(image.empty() == true) {
    System.out.println("Error: no image found!");
}

List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
Mat image32S = new Mat();
image.convertTo(image32S, CvType.CV_32SC1);

Imgproc.findContours(image32S, contours, new Mat(), Imgproc.RETR_FLOODFILL, Imgproc.CHAIN_APPROX_SIMPLE);

// Draw all the contours such that they are filled in.
Mat contourImg = new Mat(image32S.size(), image32S.type());
for (int i = 0; i < contours.size(); i++) {
    Imgproc.drawContours(contourImg, contours, i, new Scalar(255, 255, 255), -1);
}

Highgui.imwrite("debug_image.jpg", contourImg); // DEBUG

这篇关于Java中的OpenCV drawContours的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆