| 78 | }; |
| 79 | |
| 80 | void SwapFeatureMatchesBlob(FeatureMatchesBlob* matches) { |
| 81 | for (Eigen::Index i = 0; i < matches->rows(); ++i) { |
| 82 | std::swap((*matches)(i, 0), (*matches)(i, 1)); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | FeatureKeypointsBlob FeatureKeypointsToBlob(const FeatureKeypoints& keypoints) { |
| 87 | const FeatureKeypointsBlob::Index kNumCols = 6; |
no outgoing calls
no test coverage detected