Home | History | Annotate | Download | only in opencv2

Lines Matching defs:fisheye

145     @defgroup calib3d_fisheye Fisheye camera model
161 Fisheye distortion:
1622 /** @brief The methods in this namespace use a so-called fisheye camera model.
1625 namespace fisheye
1642 /** @brief Projects points using fisheye model
1669 /** @brief Distorts 2D points using fisheye model.
1680 /** @brief Undistorts 2D points using fisheye model
1711 /** @brief Transforms an image to compensate for fisheye lens distortion.
1713 @param distorted image with fisheye lens distortion.
1714 @param undistorted Output image with compensated fisheye lens distortion.
1723 The function is simply a combination of fisheye::initUndistortRectifyMap (with unity R ) and remap
1730 - b\) result of fisheye::undistortImage of fisheye camera model (all possible coefficients (k_1, k_2,
1731 k_3, k_4) of fisheye distortion were optimized under calibration)
1732 fisheye lens
1768 fisheye::CALIB_USE_INTRINSIC_GUESS/ is specified, some or all of fx, fy, cx, cy must be
1778 - **fisheye::CALIB_USE_INTRINSIC_GUESS** cameraMatrix contains valid initial values of
1781 - **fisheye::CALIB_RECOMPUTE_EXTRINSIC** Extrinsic will be recomputed after each iteration
1783 - **fisheye::CALIB_CHECK_COND** The functions will check validity of condition number.
1784 - **fisheye::CALIB_FIX_SKEW** Skew coefficient (alpha) is set to zero and stay zero.
1785 - **fisheye::CALIB_FIX_K1..4** Selected distortion coefficients are set to zeros and stay
1793 /** @brief Stereo rectification for fisheye camera model
1836 any of fisheye::CALIB_USE_INTRINSIC_GUESS , fisheye::CV_CALIB_FIX_INTRINSIC are specified,
1846 - **fisheye::CV_CALIB_FIX_INTRINSIC** Fix K1, K2? and D1, D2? so that only R, T matrices
1848 - **fisheye::CALIB_USE_INTRINSIC_GUESS** K1, K2 contains valid initial values of
1851 - **fisheye::CALIB_RECOMPUTE_EXTRINSIC** Extrinsic will be recomputed after each iteration
1853 - **fisheye::CALIB_CHECK_COND** The functions will check validity of condition number.
1854 - **fisheye::CALIB_FIX_SKEW** Skew coefficient (alpha) is set to zero and stay zero.
1855 - **fisheye::CALIB_FIX_K1..4** Selected distortion coefficients are set to zeros and stay
1861 OutputArray R, OutputArray T, int flags = fisheye::CALIB_FIX_INTRINSIC,