00001 00005 #ifndef _THERMALVIS_CAMERA_H_ 00006 #define _THERMALVIS_CAMERA_H_ 00007 00008 #include "opencv_resources.hpp" 00009 00011 struct cameraParameters { 00012 00013 cv::Mat cameraMatrix; 00014 cv::Mat distCoeffs; 00015 cv::Mat blankCoeffs; 00016 cv::Mat newCamMat; 00017 cv::Mat imageSize; 00018 cv::Size cameraSize; 00019 00020 cv::Mat Kx; 00021 cv::Mat expandedCamMat; 00022 cv::Size expandedSize; 00023 00024 cv::Mat K, K_inv; 00025 00026 cv::Mat R, P; 00027 00028 cameraParameters() { } 00029 00030 bool getCameraParameters(std::string intrinsics); 00031 00032 }; 00033 00034 #endif