Searched defs:aff_est (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/calib3d/test/
H A Dtest_affine3d_estimator.cpp106 Mat aff_est; local
108 estimateAffine3D(fpts, tpts, aff_est, outliers);
111 if (cvtest::norm(aff_est, aff, NORM_INF) > thres)
113 //cout << cvtest::norm(aff_est, aff, NORM_INF) << endl;
153 Mat aff_est; local
155 int res = estimateAffine3D(fpts, tpts, aff_est, outl);
164 if (cvtest::norm(aff_est, aff, NORM_INF) > thres)
166 cout << "aff est: " << aff_est << endl;
/external/opencv3/modules/video/test/
H A Dtest_estimaterigid.cpp110 Mat aff_est = estimateRigidTransform(fpts, tpts, true); local
113 double d = cvtest::norm(aff_est, aff, NORM_L2);
154 Mat aff_est = estimateRigidTransform(img, rotated, true); local
157 if (cvtest::norm(aff_est, aff, NORM_INF) > thres)
161 cvtest::norm(aff_est, aff, NORM_INF) );

Completed in 116 milliseconds