Backproject
InteriorOrientation.h
1 
2 #ifndef BACKPROJECT_INTERNALORIENTATION_H
3 #define BACKPROJECT_INTERNALORIENTATION_H
4 
5 #include "../util.h"
6 
11 {
12 public:
17  double get_focalLength() const;
18 
23  void set_focalLength(double focalLength);
24 
31  Point get_principalPoint() const;
32 
37  void set_principalPoint(Point principalPoint);
38 
39 private:
40  double _focalLength;
41  Point _principalPoint;
42 
43 };
44 
45 
46 #endif //BACKPROJECT_INTERNALORIENTATION_H
Point get_principalPoint() const
Retrieves the principal point of the image; (wikipedia: The principal point is the point on the image...
Definition: InteriorOrientation.cpp:18
double get_focalLength() const
retrieves the focallength of the camera
Definition: InteriorOrientation.cpp:4
Represents the Interior Orientation/Internal parameters corresponding to an image; camera/sensor info...
Definition: InteriorOrientation.h:10
void set_focalLength(double focalLength)
sets the focal length of the camera
Definition: InteriorOrientation.cpp:9
void set_principalPoint(Point principalPoint)
sets the principal point of the image
Definition: InteriorOrientation.cpp:23
Represents a 2 dimensional coordinate in an as yet unspecified unit (e.g.
Definition: util.h:23