Ejemplo n.º 1
0
void
normalizeIsotropicPoints( const Mat &points,
                          Mat &normalized_points,
                          Matx33d &T )
{
    isotropicPreconditionerFromPoints(points, T);
    applyTransformationToPoints(points, T, normalized_points);
}
Ejemplo n.º 2
0
void
normalizeIsotropicPoints( InputArray points,
                          OutputArray normalized_points,
                          OutputArray T )
{
  isotropicPreconditionerFromPoints(points, T);
  applyTransformationToPoints(points, T, normalized_points);
}