diff options
Diffstat (limited to 'third_party/aom/av1/encoder/ransac.h')
-rw-r--r-- | third_party/aom/av1/encoder/ransac.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/third_party/aom/av1/encoder/ransac.h b/third_party/aom/av1/encoder/ransac.h index f611add36..1019055ed 100644 --- a/third_party/aom/av1/encoder/ransac.h +++ b/third_party/aom/av1/encoder/ransac.h @@ -25,17 +25,8 @@ typedef int (*RansacFunc)(int *matched_points, int npoints, /* Each of these functions fits a motion model from a set of corresponding points in 2 frames using RANSAC. */ -int ransac_homography(int *matched_points, int npoints, - int *num_inliers_by_motion, double *params_by_motion, - int num_motions); int ransac_affine(int *matched_points, int npoints, int *num_inliers_by_motion, double *params_by_motion, int num_motions); -int ransac_hortrapezoid(int *matched_points, int npoints, - int *num_inliers_by_motion, double *params_by_motion, - int num_motions); -int ransac_vertrapezoid(int *matched_points, int npoints, - int *num_inliers_by_motion, double *params_by_motion, - int num_motions); int ransac_rotzoom(int *matched_points, int npoints, int *num_inliers_by_motion, double *params_by_motion, int num_motions); int ransac_translation(int *matched_points, int npoints, |