Skip to content

Commit

Permalink
Fix naming of covarianceMap/Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
othlu committed Aug 19, 2016
1 parent 7fed241 commit 1e857b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void exportCovarianceReprojectionError(const std::string & camName)
)
)
.def("observationTime", &CovarianceReprojectionError<frame_t>::observationTime)
.def("covarianceMatrix", &CovarianceReprojectionError<frame_t>::covarianceMatrix)
.def("covarianceMap", &CovarianceReprojectionError<frame_t>::covarianceMap)
;

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace aslam {
}

template<typename F>
Eigen::MatrixXd CovarianceReprojectionError<F>::covarianceMatrix() {
Eigen::MatrixXd CovarianceReprojectionError<F>::covarianceMap() {

const keypoint_t & k = _frame->keypoint(_keypointIndex);
const camera_geometry_t & cam = _frame->geometry();
Expand Down

0 comments on commit 1e857b4

Please sign in to comment.