#include <Cal3_S2.h>
Public Types | |
enum | { dimension = 5 } |
using | shared_ptr = boost::shared_ptr< Cal3_S2 > |
Public Types inherited from gtsam::Cal3 | |
enum | { dimension = 5 } |
using | shared_ptr = boost::shared_ptr< Cal3 > |
Public Member Functions | |
Standard Constructors | |
Cal3_S2 ()=default | |
Create a default calibration that leaves coordinates unchanged. More... | |
Cal3_S2 (double fx, double fy, double s, double u0, double v0) | |
constructor from doubles More... | |
Cal3_S2 (const Vector5 &d) | |
constructor from vector More... | |
Cal3_S2 (double fov, int w, int h) | |
Point2 | uncalibrate (const Point2 &p, OptionalJacobian< 2, 5 > Dcal=boost::none, OptionalJacobian< 2, 2 > Dp=boost::none) const |
Point2 | calibrate (const Point2 &p, OptionalJacobian< 2, 5 > Dcal=boost::none, OptionalJacobian< 2, 2 > Dp=boost::none) const |
Vector3 | calibrate (const Vector3 &p) const |
Public Member Functions inherited from gtsam::Cal3 | |
Cal3 ()=default | |
Create a default calibration that leaves coordinates unchanged. More... | |
Cal3 (double fx, double fy, double s, double u0, double v0) | |
constructor from doubles More... | |
Cal3 (const Vector5 &d) | |
constructor from vector More... | |
Cal3 (double fov, int w, int h) | |
virtual | ~Cal3 () |
Virtual destructor. More... | |
Cal3 (const std::string &path) | |
bool | equals (const Cal3 &K, double tol=10e-9) const |
Check if equal up to specified tolerance. More... | |
double | fx () const |
focal length x More... | |
double | fy () const |
focal length y More... | |
double | aspectRatio () const |
aspect ratio More... | |
double | skew () const |
skew More... | |
double | px () const |
image center in x More... | |
double | py () const |
image center in y More... | |
Point2 | principalPoint () const |
return the principal point More... | |
Vector5 | vector () const |
vectorized form (column-wise) More... | |
virtual Matrix3 | K () const |
return calibration matrix K More... | |
Matrix3 | inverse () const |
Return inverted calibration matrix inv(K) More... | |
virtual size_t | dim () const |
return DOF, dimensionality of tangent space More... | |
Testable | |
GTSAM_EXPORT friend std::ostream & | operator<< (std::ostream &os, const Cal3_S2 &cal) |
Output stream operator. More... | |
void | print (const std::string &s="Cal3_S2") const override |
print with optional string More... | |
bool | equals (const Cal3_S2 &K, double tol=10e-9) const |
Check if equal up to specified tolerance. More... | |
Cal3_S2 | between (const Cal3_S2 &q, OptionalJacobian< 5, 5 > H1=boost::none, OptionalJacobian< 5, 5 > H2=boost::none) const |
"Between", subtracts calibrations. between(p,q) == compose(inverse(p),q) More... | |
Manifold | |
Cal3_S2 | retract (const Vector &d) const |
Given 5-dim tangent vector, create new calibration. More... | |
Vector5 | localCoordinates (const Cal3_S2 &T2) const |
Unretraction for the calibration. More... | |
static size_t | Dim () |
return DOF, dimensionality of tangent space More... | |
Advanced Interface | |
class | boost::serialization::access |
Serialization function. More... | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int) |
Additional Inherited Members | |
Static Public Member Functions inherited from gtsam::Cal3 | |
static size_t | Dim () |
return DOF, dimensionality of tangent space More... | |
Protected Attributes inherited from gtsam::Cal3 | |
double | fx_ = 1.0f |
double | fy_ = 1.0f |
focal length More... | |
double | s_ = 0.0f |
skew More... | |
double | u0_ = 0.0f |
double | v0_ = 0.0f |
principal point More... | |
using gtsam::Cal3_S2::shared_ptr = boost::shared_ptr<Cal3_S2> |
|
default |
Create a default calibration that leaves coordinates unchanged.
|
inline |
|
inline |
|
inline |
Point2 gtsam::Cal3_S2::calibrate | ( | const Point2 & | p, |
OptionalJacobian< 2, 5 > | Dcal = boost::none , |
||
OptionalJacobian< 2, 2 > | Dp = boost::none |
||
) | const |
Convert image coordinates uv to intrinsic coordinates xy
p | point in image coordinates |
Dcal | optional 2*5 Jacobian wrpt Cal3 parameters |
Dp | optional 2*2 Jacobian wrpt intrinsic coordinates |
Definition at line 53 of file Cal3_S2.cpp.
Convert homogeneous image coordinates to intrinsic coordinates
p | point in image coordinates |
Definition at line 72 of file Cal3_S2.cpp.
|
inlinestatic |
bool gtsam::Cal3_S2::equals | ( | const Cal3_S2 & | K, |
double | tol = 10e-9 |
||
) | const |
Check if equal up to specified tolerance.
Definition at line 39 of file Cal3_S2.cpp.
|
inline |
|
overridevirtual |
print with optional string
Reimplemented from gtsam::Cal3.
Reimplemented in gtsam::Cal3_S2Stereo.
Definition at line 34 of file Cal3_S2.cpp.
|
inlineprivate |
Point2 gtsam::Cal3_S2::uncalibrate | ( | const Point2 & | p, |
OptionalJacobian< 2, 5 > | Dcal = boost::none , |
||
OptionalJacobian< 2, 2 > | Dp = boost::none |
||
) | const |
Convert intrinsic coordinates xy to image coordinates uv, fixed derivaitves
p | point in intrinsic coordinates |
Dcal | optional 2*5 Jacobian wrpt Cal3 parameters |
Dp | optional 2*2 Jacobian wrpt intrinsic coordinates |
Definition at line 44 of file Cal3_S2.cpp.
|
friend |
|
friend |
Output stream operator.
Definition at line 27 of file Cal3_S2.cpp.