|
|
|
| Cal3Unified () |
| | Default Constructor with only unit focal length.
|
| |
|
| Cal3Unified (double fx, double fy, double s, double u0, double v0, double k1, double k2, double p1=0.0, double p2=0.0, double xi=0.0) |
| |
|
virtual | ~Cal3Unified () |
| |
|
|
| Cal3Unified (const Vector &v) |
| |
|
|
virtual void | print (const std::string &s="") const |
| | print with optional string
|
| |
|
bool | equals (const Cal3Unified &K, double tol=10e-9) const |
| | assert equality up to a tolerance
|
| |
|
|
double | xi () const |
| | mirror parameter
|
| |
| Point2 | uncalibrate (const Point2 &p, OptionalJacobian< 2, 10 > Dcal=boost::none, OptionalJacobian< 2, 2 > Dp=boost::none) const |
| | convert intrinsic coordinates xy to image coordinates uv More...
|
| |
|
Point2 | calibrate (const Point2 &p, const double tol=1e-5) const |
| | Conver a pixel coordinate to ideal coordinate.
|
| |
|
Point2 | spaceToNPlane (const Point2 &p) const |
| | Convert a 3D point to normalized unit plane.
|
| |
|
Point2 | nPlaneToSpace (const Point2 &p) const |
| | Convert a normalized unit plane point to 3D space.
|
| |
|
| Cal3DS2_Base () |
| | Default Constructor with only unit focal length.
|
| |
|
| Cal3DS2_Base (double fx, double fy, double s, double u0, double v0, double k1, double k2, double p1=0.0, double p2=0.0) |
| |
|
virtual | ~Cal3DS2_Base () |
| |
|
| Cal3DS2_Base (const Vector &v) |
| |
|
bool | equals (const Cal3DS2_Base &K, double tol=10e-9) const |
| | assert equality up to a tolerance
|
| |
|
double | fx () const |
| | focal length x
|
| |
|
double | fy () const |
| | focal length x
|
| |
|
double | skew () const |
| | skew
|
| |
|
double | px () const |
| | image center in x
|
| |
|
double | py () const |
| | image center in y
|
| |
|
double | k1 () const |
| | First distortion coefficient.
|
| |
|
double | k2 () const |
| | Second distortion coefficient.
|
| |
|
double | p1 () const |
| | First tangential distortion coefficient.
|
| |
|
double | p2 () const |
| | Second tangential distortion coefficient.
|
| |
|
Matrix3 | K () const |
| | return calibration matrix – not really applicable
|
| |
|
Vector4 | k () const |
| | return distortion parameter vector
|
| |
|
Vector9 | vector () const |
| | Return all parameters as a vector.
|
| |
| Point2 | uncalibrate (const Point2 &p, OptionalJacobian< 2, 9 > Dcal=boost::none, OptionalJacobian< 2, 2 > Dp=boost::none) const |
| | convert intrinsic coordinates xy to (distorted) image coordinates uv More...
|
| |
|
Point2 | calibrate (const Point2 &p, const double tol=1e-5) const |
| | Convert (distorted) image coordinates uv to intrinsic coordinates xy.
|
| |
|
Matrix2 | D2d_intrinsic (const Point2 &p) const |
| | Derivative of uncalibrate wrpt intrinsic coordinates.
|
| |
|
Matrix29 | D2d_calibration (const Point2 &p) const |
| | Derivative of uncalibrate wrpt the calibration parameters.
|
| |
| virtual boost::shared_ptr< Cal3DS2_Base > | clone () const |
| |