I am trying to find the convex hull of a contour with emgu 3.1
It seems to be the case that FindContours only accepts a vectorOfVectorOfPoints (not pointsF). But then, convexhull requires a vectorOfPointF. Am I wrong? If I change contours to VectorOfVectorOfPointF I get a runtime error in the call to FindContours.
How do you convert a VectorOfPoint to VectorOfPointF? Is there a better way to do it?
Thanks!
using (var contours = new VectorOfVectorOfPoint())
using (Mat hierachy = new Mat())
{
CvInvoke.FindContours(img, contours, hierachy, Emgu.CV.CvEnum.RetrType.External, Emgu.CV.CvEnum.ChainApproxMethod.ChainApproxSimple, new Point());
for (int i = 0; i < contours.Size; i++)
{
var contour = contours[i];
var c = new VectorOfPointF();
CvInvoke.ConvexHull(contour, c, false, true);
}
It seems that the only way is to construct your VectorOfPointF from each of the VectorOfPoint in the contours object: