calib3d_c.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  16. // Third party copyrights are property of their respective owners.
  17. //
  18. // Redistribution and use in source and binary forms, with or without modification,
  19. // are permitted provided that the following conditions are met:
  20. //
  21. // * Redistribution's of source code must retain the above copyright notice,
  22. // this list of conditions and the following disclaimer.
  23. //
  24. // * Redistribution's in binary form must reproduce the above copyright notice,
  25. // this list of conditions and the following disclaimer in the documentation
  26. // and/or other materials provided with the distribution.
  27. //
  28. // * The name of the copyright holders may not be used to endorse or promote products
  29. // derived from this software without specific prior written permission.
  30. //
  31. // This software is provided by the copyright holders and contributors "as is" and
  32. // any express or implied warranties, including, but not limited to, the implied
  33. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  34. // In no event shall the Intel Corporation or contributors be liable for any direct,
  35. // indirect, incidental, special, exemplary, or consequential damages
  36. // (including, but not limited to, procurement of substitute goods or services;
  37. // loss of use, data, or profits; or business interruption) however caused
  38. // and on any theory of liability, whether in contract, strict liability,
  39. // or tort (including negligence or otherwise) arising in any way out of
  40. // the use of this software, even if advised of the possibility of such damage.
  41. //
  42. //M*/
  43. #ifndef __OPENCV_CALIB3D_C_H__
  44. #define __OPENCV_CALIB3D_C_H__
  45. #include "opencv2/core/core_c.h"
  46. #ifdef __cplusplus
  47. extern "C" {
  48. #endif
  49. /** @addtogroup calib3d_c
  50. @{
  51. */
  52. /****************************************************************************************\
  53. * Camera Calibration, Pose Estimation and Stereo *
  54. \****************************************************************************************/
  55. typedef struct CvPOSITObject CvPOSITObject;
  56. /* Allocates and initializes CvPOSITObject structure before doing cvPOSIT */
  57. CVAPI(CvPOSITObject*) cvCreatePOSITObject( CvPoint3D32f* points, int point_count );
  58. /* Runs POSIT (POSe from ITeration) algorithm for determining 3d position of
  59. an object given its model and projection in a weak-perspective case */
  60. CVAPI(void) cvPOSIT( CvPOSITObject* posit_object, CvPoint2D32f* image_points,
  61. double focal_length, CvTermCriteria criteria,
  62. float* rotation_matrix, float* translation_vector);
  63. /* Releases CvPOSITObject structure */
  64. CVAPI(void) cvReleasePOSITObject( CvPOSITObject** posit_object );
  65. /* updates the number of RANSAC iterations */
  66. CVAPI(int) cvRANSACUpdateNumIters( double p, double err_prob,
  67. int model_points, int max_iters );
  68. CVAPI(void) cvConvertPointsHomogeneous( const CvMat* src, CvMat* dst );
  69. /* Calculates fundamental matrix given a set of corresponding points */
  70. #define CV_FM_7POINT 1
  71. #define CV_FM_8POINT 2
  72. #define CV_LMEDS 4
  73. #define CV_RANSAC 8
  74. #define CV_FM_LMEDS_ONLY CV_LMEDS
  75. #define CV_FM_RANSAC_ONLY CV_RANSAC
  76. #define CV_FM_LMEDS CV_LMEDS
  77. #define CV_FM_RANSAC CV_RANSAC
  78. enum
  79. {
  80. CV_ITERATIVE = 0,
  81. CV_EPNP = 1, // F.Moreno-Noguer, V.Lepetit and P.Fua "EPnP: Efficient Perspective-n-Point Camera Pose Estimation"
  82. CV_P3P = 2, // X.S. Gao, X.-R. Hou, J. Tang, H.-F. Chang; "Complete Solution Classification for the Perspective-Three-Point Problem"
  83. CV_DLS = 3 // Joel A. Hesch and Stergios I. Roumeliotis. "A Direct Least-Squares (DLS) Method for PnP"
  84. };
  85. CVAPI(int) cvFindFundamentalMat( const CvMat* points1, const CvMat* points2,
  86. CvMat* fundamental_matrix,
  87. int method CV_DEFAULT(CV_FM_RANSAC),
  88. double param1 CV_DEFAULT(3.), double param2 CV_DEFAULT(0.99),
  89. CvMat* status CV_DEFAULT(NULL) );
  90. /* For each input point on one of images
  91. computes parameters of the corresponding
  92. epipolar line on the other image */
  93. CVAPI(void) cvComputeCorrespondEpilines( const CvMat* points,
  94. int which_image,
  95. const CvMat* fundamental_matrix,
  96. CvMat* correspondent_lines );
  97. /* Triangulation functions */
  98. CVAPI(void) cvTriangulatePoints(CvMat* projMatr1, CvMat* projMatr2,
  99. CvMat* projPoints1, CvMat* projPoints2,
  100. CvMat* points4D);
  101. CVAPI(void) cvCorrectMatches(CvMat* F, CvMat* points1, CvMat* points2,
  102. CvMat* new_points1, CvMat* new_points2);
  103. /* Computes the optimal new camera matrix according to the free scaling parameter alpha:
  104. alpha=0 - only valid pixels will be retained in the undistorted image
  105. alpha=1 - all the source image pixels will be retained in the undistorted image
  106. */
  107. CVAPI(void) cvGetOptimalNewCameraMatrix( const CvMat* camera_matrix,
  108. const CvMat* dist_coeffs,
  109. CvSize image_size, double alpha,
  110. CvMat* new_camera_matrix,
  111. CvSize new_imag_size CV_DEFAULT(cvSize(0,0)),
  112. CvRect* valid_pixel_ROI CV_DEFAULT(0),
  113. int center_principal_point CV_DEFAULT(0));
  114. /* Converts rotation vector to rotation matrix or vice versa */
  115. CVAPI(int) cvRodrigues2( const CvMat* src, CvMat* dst,
  116. CvMat* jacobian CV_DEFAULT(0) );
  117. /* Finds perspective transformation between the object plane and image (view) plane */
  118. CVAPI(int) cvFindHomography( const CvMat* src_points,
  119. const CvMat* dst_points,
  120. CvMat* homography,
  121. int method CV_DEFAULT(0),
  122. double ransacReprojThreshold CV_DEFAULT(3),
  123. CvMat* mask CV_DEFAULT(0),
  124. int maxIters CV_DEFAULT(2000),
  125. double confidence CV_DEFAULT(0.995));
  126. /* Computes RQ decomposition for 3x3 matrices */
  127. CVAPI(void) cvRQDecomp3x3( const CvMat *matrixM, CvMat *matrixR, CvMat *matrixQ,
  128. CvMat *matrixQx CV_DEFAULT(NULL),
  129. CvMat *matrixQy CV_DEFAULT(NULL),
  130. CvMat *matrixQz CV_DEFAULT(NULL),
  131. CvPoint3D64f *eulerAngles CV_DEFAULT(NULL));
  132. /* Computes projection matrix decomposition */
  133. CVAPI(void) cvDecomposeProjectionMatrix( const CvMat *projMatr, CvMat *calibMatr,
  134. CvMat *rotMatr, CvMat *posVect,
  135. CvMat *rotMatrX CV_DEFAULT(NULL),
  136. CvMat *rotMatrY CV_DEFAULT(NULL),
  137. CvMat *rotMatrZ CV_DEFAULT(NULL),
  138. CvPoint3D64f *eulerAngles CV_DEFAULT(NULL));
  139. /* Computes d(AB)/dA and d(AB)/dB */
  140. CVAPI(void) cvCalcMatMulDeriv( const CvMat* A, const CvMat* B, CvMat* dABdA, CvMat* dABdB );
  141. /* Computes r3 = rodrigues(rodrigues(r2)*rodrigues(r1)),
  142. t3 = rodrigues(r2)*t1 + t2 and the respective derivatives */
  143. CVAPI(void) cvComposeRT( const CvMat* _rvec1, const CvMat* _tvec1,
  144. const CvMat* _rvec2, const CvMat* _tvec2,
  145. CvMat* _rvec3, CvMat* _tvec3,
  146. CvMat* dr3dr1 CV_DEFAULT(0), CvMat* dr3dt1 CV_DEFAULT(0),
  147. CvMat* dr3dr2 CV_DEFAULT(0), CvMat* dr3dt2 CV_DEFAULT(0),
  148. CvMat* dt3dr1 CV_DEFAULT(0), CvMat* dt3dt1 CV_DEFAULT(0),
  149. CvMat* dt3dr2 CV_DEFAULT(0), CvMat* dt3dt2 CV_DEFAULT(0) );
  150. /* Projects object points to the view plane using
  151. the specified extrinsic and intrinsic camera parameters */
  152. CVAPI(void) cvProjectPoints2( const CvMat* object_points, const CvMat* rotation_vector,
  153. const CvMat* translation_vector, const CvMat* camera_matrix,
  154. const CvMat* distortion_coeffs, CvMat* image_points,
  155. CvMat* dpdrot CV_DEFAULT(NULL), CvMat* dpdt CV_DEFAULT(NULL),
  156. CvMat* dpdf CV_DEFAULT(NULL), CvMat* dpdc CV_DEFAULT(NULL),
  157. CvMat* dpddist CV_DEFAULT(NULL),
  158. double aspect_ratio CV_DEFAULT(0));
  159. /* Finds extrinsic camera parameters from
  160. a few known corresponding point pairs and intrinsic parameters */
  161. CVAPI(void) cvFindExtrinsicCameraParams2( const CvMat* object_points,
  162. const CvMat* image_points,
  163. const CvMat* camera_matrix,
  164. const CvMat* distortion_coeffs,
  165. CvMat* rotation_vector,
  166. CvMat* translation_vector,
  167. int use_extrinsic_guess CV_DEFAULT(0) );
  168. /* Computes initial estimate of the intrinsic camera parameters
  169. in case of planar calibration target (e.g. chessboard) */
  170. CVAPI(void) cvInitIntrinsicParams2D( const CvMat* object_points,
  171. const CvMat* image_points,
  172. const CvMat* npoints, CvSize image_size,
  173. CvMat* camera_matrix,
  174. double aspect_ratio CV_DEFAULT(1.) );
  175. #define CV_CALIB_CB_ADAPTIVE_THRESH 1
  176. #define CV_CALIB_CB_NORMALIZE_IMAGE 2
  177. #define CV_CALIB_CB_FILTER_QUADS 4
  178. #define CV_CALIB_CB_FAST_CHECK 8
  179. // Performs a fast check if a chessboard is in the input image. This is a workaround to
  180. // a problem of cvFindChessboardCorners being slow on images with no chessboard
  181. // - src: input image
  182. // - size: chessboard size
  183. // Returns 1 if a chessboard can be in this image and findChessboardCorners should be called,
  184. // 0 if there is no chessboard, -1 in case of error
  185. CVAPI(int) cvCheckChessboard(IplImage* src, CvSize size);
  186. /* Detects corners on a chessboard calibration pattern */
  187. CVAPI(int) cvFindChessboardCorners( const void* image, CvSize pattern_size,
  188. CvPoint2D32f* corners,
  189. int* corner_count CV_DEFAULT(NULL),
  190. int flags CV_DEFAULT(CV_CALIB_CB_ADAPTIVE_THRESH+CV_CALIB_CB_NORMALIZE_IMAGE) );
  191. /* Draws individual chessboard corners or the whole chessboard detected */
  192. CVAPI(void) cvDrawChessboardCorners( CvArr* image, CvSize pattern_size,
  193. CvPoint2D32f* corners,
  194. int count, int pattern_was_found );
  195. #define CV_CALIB_USE_INTRINSIC_GUESS 1
  196. #define CV_CALIB_FIX_ASPECT_RATIO 2
  197. #define CV_CALIB_FIX_PRINCIPAL_POINT 4
  198. #define CV_CALIB_ZERO_TANGENT_DIST 8
  199. #define CV_CALIB_FIX_FOCAL_LENGTH 16
  200. #define CV_CALIB_FIX_K1 32
  201. #define CV_CALIB_FIX_K2 64
  202. #define CV_CALIB_FIX_K3 128
  203. #define CV_CALIB_FIX_K4 2048
  204. #define CV_CALIB_FIX_K5 4096
  205. #define CV_CALIB_FIX_K6 8192
  206. #define CV_CALIB_RATIONAL_MODEL 16384
  207. #define CV_CALIB_THIN_PRISM_MODEL 32768
  208. #define CV_CALIB_FIX_S1_S2_S3_S4 65536
  209. #define CV_CALIB_TILTED_MODEL 262144
  210. #define CV_CALIB_FIX_TAUX_TAUY 524288
  211. /* Finds intrinsic and extrinsic camera parameters
  212. from a few views of known calibration pattern */
  213. CVAPI(double) cvCalibrateCamera2( const CvMat* object_points,
  214. const CvMat* image_points,
  215. const CvMat* point_counts,
  216. CvSize image_size,
  217. CvMat* camera_matrix,
  218. CvMat* distortion_coeffs,
  219. CvMat* rotation_vectors CV_DEFAULT(NULL),
  220. CvMat* translation_vectors CV_DEFAULT(NULL),
  221. int flags CV_DEFAULT(0),
  222. CvTermCriteria term_crit CV_DEFAULT(cvTermCriteria(
  223. CV_TERMCRIT_ITER+CV_TERMCRIT_EPS,30,DBL_EPSILON)) );
  224. /* Computes various useful characteristics of the camera from the data computed by
  225. cvCalibrateCamera2 */
  226. CVAPI(void) cvCalibrationMatrixValues( const CvMat *camera_matrix,
  227. CvSize image_size,
  228. double aperture_width CV_DEFAULT(0),
  229. double aperture_height CV_DEFAULT(0),
  230. double *fovx CV_DEFAULT(NULL),
  231. double *fovy CV_DEFAULT(NULL),
  232. double *focal_length CV_DEFAULT(NULL),
  233. CvPoint2D64f *principal_point CV_DEFAULT(NULL),
  234. double *pixel_aspect_ratio CV_DEFAULT(NULL));
  235. #define CV_CALIB_FIX_INTRINSIC 256
  236. #define CV_CALIB_SAME_FOCAL_LENGTH 512
  237. /* Computes the transformation from one camera coordinate system to another one
  238. from a few correspondent views of the same calibration target. Optionally, calibrates
  239. both cameras */
  240. CVAPI(double) cvStereoCalibrate( const CvMat* object_points, const CvMat* image_points1,
  241. const CvMat* image_points2, const CvMat* npoints,
  242. CvMat* camera_matrix1, CvMat* dist_coeffs1,
  243. CvMat* camera_matrix2, CvMat* dist_coeffs2,
  244. CvSize image_size, CvMat* R, CvMat* T,
  245. CvMat* E CV_DEFAULT(0), CvMat* F CV_DEFAULT(0),
  246. int flags CV_DEFAULT(CV_CALIB_FIX_INTRINSIC),
  247. CvTermCriteria term_crit CV_DEFAULT(cvTermCriteria(
  248. CV_TERMCRIT_ITER+CV_TERMCRIT_EPS,30,1e-6)) );
  249. #define CV_CALIB_ZERO_DISPARITY 1024
  250. /* Computes 3D rotations (+ optional shift) for each camera coordinate system to make both
  251. views parallel (=> to make all the epipolar lines horizontal or vertical) */
  252. CVAPI(void) cvStereoRectify( const CvMat* camera_matrix1, const CvMat* camera_matrix2,
  253. const CvMat* dist_coeffs1, const CvMat* dist_coeffs2,
  254. CvSize image_size, const CvMat* R, const CvMat* T,
  255. CvMat* R1, CvMat* R2, CvMat* P1, CvMat* P2,
  256. CvMat* Q CV_DEFAULT(0),
  257. int flags CV_DEFAULT(CV_CALIB_ZERO_DISPARITY),
  258. double alpha CV_DEFAULT(-1),
  259. CvSize new_image_size CV_DEFAULT(cvSize(0,0)),
  260. CvRect* valid_pix_ROI1 CV_DEFAULT(0),
  261. CvRect* valid_pix_ROI2 CV_DEFAULT(0));
  262. /* Computes rectification transformations for uncalibrated pair of images using a set
  263. of point correspondences */
  264. CVAPI(int) cvStereoRectifyUncalibrated( const CvMat* points1, const CvMat* points2,
  265. const CvMat* F, CvSize img_size,
  266. CvMat* H1, CvMat* H2,
  267. double threshold CV_DEFAULT(5));
  268. /* stereo correspondence parameters and functions */
  269. #define CV_STEREO_BM_NORMALIZED_RESPONSE 0
  270. #define CV_STEREO_BM_XSOBEL 1
  271. /* Block matching algorithm structure */
  272. typedef struct CvStereoBMState
  273. {
  274. // pre-filtering (normalization of input images)
  275. int preFilterType; // =CV_STEREO_BM_NORMALIZED_RESPONSE now
  276. int preFilterSize; // averaging window size: ~5x5..21x21
  277. int preFilterCap; // the output of pre-filtering is clipped by [-preFilterCap,preFilterCap]
  278. // correspondence using Sum of Absolute Difference (SAD)
  279. int SADWindowSize; // ~5x5..21x21
  280. int minDisparity; // minimum disparity (can be negative)
  281. int numberOfDisparities; // maximum disparity - minimum disparity (> 0)
  282. // post-filtering
  283. int textureThreshold; // the disparity is only computed for pixels
  284. // with textured enough neighborhood
  285. int uniquenessRatio; // accept the computed disparity d* only if
  286. // SAD(d) >= SAD(d*)*(1 + uniquenessRatio/100.)
  287. // for any d != d*+/-1 within the search range.
  288. int speckleWindowSize; // disparity variation window
  289. int speckleRange; // acceptable range of variation in window
  290. int trySmallerWindows; // if 1, the results may be more accurate,
  291. // at the expense of slower processing
  292. CvRect roi1, roi2;
  293. int disp12MaxDiff;
  294. // temporary buffers
  295. CvMat* preFilteredImg0;
  296. CvMat* preFilteredImg1;
  297. CvMat* slidingSumBuf;
  298. CvMat* cost;
  299. CvMat* disp;
  300. } CvStereoBMState;
  301. #define CV_STEREO_BM_BASIC 0
  302. #define CV_STEREO_BM_FISH_EYE 1
  303. #define CV_STEREO_BM_NARROW 2
  304. CVAPI(CvStereoBMState*) cvCreateStereoBMState(int preset CV_DEFAULT(CV_STEREO_BM_BASIC),
  305. int numberOfDisparities CV_DEFAULT(0));
  306. CVAPI(void) cvReleaseStereoBMState( CvStereoBMState** state );
  307. CVAPI(void) cvFindStereoCorrespondenceBM( const CvArr* left, const CvArr* right,
  308. CvArr* disparity, CvStereoBMState* state );
  309. CVAPI(CvRect) cvGetValidDisparityROI( CvRect roi1, CvRect roi2, int minDisparity,
  310. int numberOfDisparities, int SADWindowSize );
  311. CVAPI(void) cvValidateDisparity( CvArr* disparity, const CvArr* cost,
  312. int minDisparity, int numberOfDisparities,
  313. int disp12MaxDiff CV_DEFAULT(1) );
  314. /* Reprojects the computed disparity image to the 3D space using the specified 4x4 matrix */
  315. CVAPI(void) cvReprojectImageTo3D( const CvArr* disparityImage,
  316. CvArr* _3dImage, const CvMat* Q,
  317. int handleMissingValues CV_DEFAULT(0) );
  318. /** @} calib3d_c */
  319. #ifdef __cplusplus
  320. } // extern "C"
  321. //////////////////////////////////////////////////////////////////////////////////////////
  322. class CV_EXPORTS CvLevMarq
  323. {
  324. public:
  325. CvLevMarq();
  326. CvLevMarq( int nparams, int nerrs, CvTermCriteria criteria=
  327. cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,DBL_EPSILON),
  328. bool completeSymmFlag=false );
  329. ~CvLevMarq();
  330. void init( int nparams, int nerrs, CvTermCriteria criteria=
  331. cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,DBL_EPSILON),
  332. bool completeSymmFlag=false );
  333. bool update( const CvMat*& param, CvMat*& J, CvMat*& err );
  334. bool updateAlt( const CvMat*& param, CvMat*& JtJ, CvMat*& JtErr, double*& errNorm );
  335. void clear();
  336. void step();
  337. enum { DONE=0, STARTED=1, CALC_J=2, CHECK_ERR=3 };
  338. cv::Ptr<CvMat> mask;
  339. cv::Ptr<CvMat> prevParam;
  340. cv::Ptr<CvMat> param;
  341. cv::Ptr<CvMat> J;
  342. cv::Ptr<CvMat> err;
  343. cv::Ptr<CvMat> JtJ;
  344. cv::Ptr<CvMat> JtJN;
  345. cv::Ptr<CvMat> JtErr;
  346. cv::Ptr<CvMat> JtJV;
  347. cv::Ptr<CvMat> JtJW;
  348. double prevErrNorm, errNorm;
  349. int lambdaLg10;
  350. CvTermCriteria criteria;
  351. int state;
  352. int iters;
  353. bool completeSymmFlag;
  354. int solveMethod;
  355. };
  356. #endif
  357. #endif /* __OPENCV_CALIB3D_C_H__ */