Open-CV 2.4 Android-Java:

我已经搜索了轮廓(MatofPoint的列表),如下所示:

Imgproc.findContours(roi_mat, contours, hierarchy, cfg.retMode, cfg.apxMode);

然后是凸包(必须是MatofInt的列表)
for (int k=0; k < contours.size(); k++){

     Imgproc.convexHull(contours.get(k), hull.get(k));
}

凸包需要MatofInt,而绘制轮廓需要MatofPoint。

提前谢谢

编辑:@ OpenCV4Android
for (int k=0; k < contours.size(); k++){
    Imgproc.convexHull(contours.get(k), hullInt);

    for(int j=0; j < hullInt.toList().size(); j++){
        hullPointList.add(contours.get(k).toList().get(hullInt.toList().get(j)));
    }

    hullPointMat.fromList(hullPointList);
    hullPoints.add(hullPointMat);
}

Imgproc.drawContours( mROI, hullPoints, -1,  new Scalar(255,0,0, 255), 1);

最佳答案

看起来OpenCV Java API缺少另一个凸凸()签名:

convexHull(MatOfPoint points, MatOfPoint hull);

就像可以用C++调用一样。

虽然我们还没有添加它,但是您需要手动创建 MatOfPoint 格式的 shell :
  • 使用MatOfPoint::toArray()MatOfPoint::toList()获取轮廓点
  • 使用MatOfInt::toArray()MatOfInt::toList()获取它们的船体索引
  • 仅使用船体点创建新的Point[]List<Point>
  • 通过MatOfPointMatOfPoint::fromArray()将其转换为MatOfPoint::fromList()
  • 调用Core.drawContours()
  • 09-16 06:38