小编典典

Android OpenCV 2.4凸包

java

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);

阅读 225

收藏
2020-11-01

共1个答案

小编典典

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

convexHull(MatOfPoint points, MatOfPoint hull);

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

虽然我们还没有添加它,你需要创建的 船体MatOfPoint 手动格式:

  • 使用MatOfPoint::toArray()MatOfPoint::toList()获取轮廓点
  • 使用MatOfInt::toArray()MatOfInt::toList()获取其船体索引
  • 创建一个新的Point[]List<Point>仅具有船体的点
  • MatOfPoint通过MatOfPoint::fromArray()或转换为MatOfPoint::fromList()
  • 呼叫 Core.drawContours()
2020-11-01