| 26 | class ReprojectionError { |
| 27 | public: |
| 28 | ReprojectionError(Eigen::Vector2d observed_keypoint, Eigen::Matrix3d K) |
| 29 | : observed_keypoint_(observed_keypoint), K_(K) {} |
| 30 | template<typename T> |
| 31 | bool operator()(const T* camera_parameters, const T* point_parameters, T* residuals) const { |
| 32 | using Vector3T = Eigen::Matrix<T, 3, 1>; |
nothing calls this directly
no outgoing calls
no test coverage detected