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,但是drawcontours想要一个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);
答案 0 :(得分:4)
看起来OpenCV Java API缺少另一个convexHull()签名:
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()
答案 1 :(得分:0)
在为轮廓添加列表点之前,我们需要 clear hullPointList
hullPointList .clear();
for(int j=0; j < hullInt.toList().size(); j++){
hullPointList.add(contours.get(k).toList().get(hullInt.toList().get(j)));
}