minor typo fixes
parent
a2ef54c60f
commit
105c4b809e
|
@ -116,7 +116,7 @@ Point2 Cal3Bundler::calibrate(const Point2& pi, const double tol) const {
|
||||||
|
|
||||||
if (iteration >= maxIterations)
|
if (iteration >= maxIterations)
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"Cal3DS2::calibrate fails to converge. need a better initialization");
|
"Cal3Bundler::calibrate fails to converge. need a better initialization");
|
||||||
|
|
||||||
return pn;
|
return pn;
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,7 +117,7 @@ public:
|
||||||
Point2 uncalibrate(const Point2& p, OptionalJacobian<2, 3> Dcal = boost::none,
|
Point2 uncalibrate(const Point2& p, OptionalJacobian<2, 3> Dcal = boost::none,
|
||||||
OptionalJacobian<2, 2> Dp = boost::none) const;
|
OptionalJacobian<2, 2> Dp = boost::none) const;
|
||||||
|
|
||||||
/// Conver a pixel coordinate to ideal coordinate
|
/// Convert a pixel coordinate to ideal coordinate
|
||||||
Point2 calibrate(const Point2& pi, const double tol = 1e-5) const;
|
Point2 calibrate(const Point2& pi, const double tol = 1e-5) const;
|
||||||
|
|
||||||
/// @deprecated might be removed in next release, use uncalibrate
|
/// @deprecated might be removed in next release, use uncalibrate
|
||||||
|
|
Loading…
Reference in New Issue