// Hausdorff Distant Extractor
Ptr<HausdorffDistanceExtractor> model = createHausdorffDistanceExtractor();
dist = model->computeDistance(c1, c2);
I am passing 2 images and extracting the points using samplecounters. Here c1 and c2 are the vector of countour points which are passed to the computeDistance function. The 2 images that I pass are same yet the distance I am getting in dist is non-zero. Please help.