mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
429 B
13 lines
429 B
14 years ago
|
#ifndef __OPENCV_AUTOCALIB_HPP__
|
||
|
#define __OPENCV_AUTOCALIB_HPP__
|
||
14 years ago
|
|
||
|
#include <opencv2/core/core.hpp>
|
||
|
|
||
|
// See "Construction of Panoramic Image Mosaics with Global and Local Alignment"
|
||
|
// by Heung-Yeung Shum and Richard Szeliski.
|
||
|
void focalsFromHomography(const cv::Mat &H, double &f0, double &f1, bool &f0_ok, bool &f1_ok);
|
||
|
|
||
|
bool focalsFromFundamental(const cv::Mat &F, double &f0, double &f1);
|
||
|
|
||
14 years ago
|
#endif // __OPENCV_AUTOCALIB_HPP__
|