#include <fundamental_matrix_ransac_problem.h>
| bsfm::FundamentalMatrixRansacModel::FundamentalMatrixRansacModel |
( |
| ) |
|
| bsfm::FundamentalMatrixRansacModel::~FundamentalMatrixRansacModel |
( |
| ) |
|
|
virtual |
| bsfm::FundamentalMatrixRansacModel::FundamentalMatrixRansacModel |
( |
const Matrix3d & |
F | ) |
|
| double bsfm::FundamentalMatrixRansacModel::Error |
( |
| ) |
const |
|
virtual |
| double bsfm::FundamentalMatrixRansacModel::EvaluateEpipolarCondition |
( |
const FeatureMatch & |
match | ) |
const |
Definition at line 91 of file fundamental_matrix_ransac_problem.cpp.
95 kp1 << match.feature1_.u_, match.feature1_.v_, 1;
96 kp2 << match.feature2_.u_, match.feature2_.v_, 1;
99 const double epipolar_condition = kp2.transpose() *
F_ * kp1;
100 return epipolar_condition;
| bool bsfm::FundamentalMatrixRansacModel::IsGoodFit |
( |
const FeatureMatch & |
data_point, |
|
|
double |
error_tolerance |
|
) |
| |
|
virtual |
| double bsfm::FundamentalMatrixRansacModel::error_ |
| Matrix3d bsfm::FundamentalMatrixRansacModel::F_ |
The documentation for this struct was generated from the following files: