コード例 #1
0
ファイル: conditioning.cpp プロジェクト: pokeefe/libmv
void
normalizeIsotropicPoints( const Mat &points,
                          Mat &normalized_points,
                          Matx33d &T )
{
    isotropicPreconditionerFromPoints(points, T);
    applyTransformationToPoints(points, T, normalized_points);
}
コード例 #2
0
ファイル: conditioning.cpp プロジェクト: 2php/opencv_contrib
void
normalizeIsotropicPoints( InputArray points,
                          OutputArray normalized_points,
                          OutputArray T )
{
  isotropicPreconditionerFromPoints(points, T);
  applyTransformationToPoints(points, T, normalized_points);
}
コード例 #3
0
		void NormalizePoints(const Mat &points,
			Mat *normalized_points,
			Mat3 *T,
			int width,
			int height) {
			PreconditionerFromPoints(width, height, T);
			applyTransformationToPoints(points, *T, normalized_points);
		}
コード例 #4
0
		void NormalizeIsotropicPoints(const Mat &points,
			Mat *normalized_points,
			Mat3 *T) {
			IsotropicPreconditionerFromPoints(points, T);
			applyTransformationToPoints(points, *T, normalized_points);
		}