|
| CamBase (int width, int height) |
| Default constructor. More...
|
|
virtual void | compute_distort_jacobian (const Eigen::Vector2d &uv_norm, Eigen::MatrixXd &H_dz_dzn, Eigen::MatrixXd &H_dz_dzeta)=0 |
| Computes the derivative of raw distorted to normalized coordinate. More...
|
|
cv::Point2f | distort_cv (const cv::Point2f &uv_norm) |
| Given a normalized uv coordinate this will distort it to the raw image plane. More...
|
|
Eigen::Vector2d | distort_d (const Eigen::Vector2d &uv_norm) |
| Given a normalized uv coordinate this will distort it to the raw image plane. More...
|
|
virtual Eigen::Vector2f | distort_f (const Eigen::Vector2f &uv_norm)=0 |
| Given a normalized uv coordinate this will distort it to the raw image plane. More...
|
|
cv::Vec4d | get_D () |
| Gets the camera distortion. More...
|
|
cv::Matx33d | get_K () |
| Gets the camera matrix. More...
|
|
Eigen::MatrixXd | get_value () |
| Gets the complete intrinsic vector. More...
|
|
int | h () |
| Gets the height of the camera images. More...
|
|
virtual void | set_value (const Eigen::MatrixXd &calib) |
| This will set and update the camera calibration values. This should be called on startup for each camera and after update! More...
|
|
cv::Point2f | undistort_cv (const cv::Point2f &uv_dist) |
| Given a raw uv point, this will undistort it based on the camera matrices into normalized camera coords. More...
|
|
Eigen::Vector2d | undistort_d (const Eigen::Vector2d &uv_dist) |
| Given a raw uv point, this will undistort it based on the camera matrices into normalized camera coords. More...
|
|
virtual Eigen::Vector2f | undistort_f (const Eigen::Vector2f &uv_dist)=0 |
| Given a raw uv point, this will undistort it based on the camera matrices into normalized camera coords. More...
|
|
int | w () |
| Gets the width of the camera images. More...
|
|
virtual | ~CamBase () |
|
Base pinhole camera model class.
This is the base class for all our camera models. All these models are pinhole cameras, thus just have standard reprojection logic. See each derived class for detailed examples of each model.
Definition at line 39 of file CamBase.h.