adding method to get fx & fy (same for Cal3Bundler)

release/4.3a0
Chris Beall 2013-10-15 20:28:58 +00:00
parent 796e15e7bd
commit 6969b942b6
1 changed files with 10 additions and 0 deletions

View File

@ -45,6 +45,16 @@ public:
/// @name Standard Constructors /// @name Standard Constructors
/// @{ /// @{
/// focal length x
inline double fx() const {
return f_;
}
/// focal length y
inline double fy() const {
return f_;
}
/// Default constructor /// Default constructor
Cal3Bundler(); Cal3Bundler();