refactored opencv_stitching

This commit is contained in:
Alexey Spizhevoy
2011-05-16 05:11:09 +00:00
parent f80c93aa82
commit 79ed4e4c92
10 changed files with 78 additions and 77 deletions

View File

@@ -12,8 +12,9 @@ struct CameraParams
CameraParams(const CameraParams& other);
const CameraParams& operator =(const CameraParams& other);
double focal;
cv::Mat M, t;
double focal; // Focal length
cv::Mat R; // Rotation
cv::Mat t; // Translation
};