@@ -3805,7 +3805,7 @@ namespace fisheye
3805
3805
@param imagePoints Output array of image points, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel, or
3806
3806
vector\<Point2f\>.
3807
3807
@param affine
3808
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3808
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3809
3809
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3810
3810
@param alpha The skew coefficient.
3811
3811
@param jacobian Optional output 2Nx15 jacobian matrix of derivatives of image points with respect
@@ -3829,7 +3829,7 @@ namespace fisheye
3829
3829
3830
3830
@param undistorted Array of object points, 1xN/Nx1 2-channel (or vector\<Point2f\> ), where N is
3831
3831
the number of points in the view.
3832
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3832
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3833
3833
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3834
3834
@param alpha The skew coefficient.
3835
3835
@param distorted Output array of image points, 1xN/Nx1 2-channel, or vector\<Point2f\> .
@@ -3841,12 +3841,12 @@ namespace fisheye
3841
3841
CV_EXPORTS_W void distortPoints (InputArray undistorted, OutputArray distorted, InputArray K, InputArray D, double alpha = 0 );
3842
3842
3843
3843
/* * @overload
3844
- Overload of distortPoints function to handle cases when undistorted points are got with non-identity
3844
+ Overload of distortPoints function to handle cases when undistorted points are obtained with non-identity
3845
3845
camera matrix, e.g. output of #estimateNewCameraMatrixForUndistortRectify.
3846
3846
@param undistorted Array of object points, 1xN/Nx1 2-channel (or vector\<Point2f\> ), where N is
3847
3847
the number of points in the view.
3848
3848
@param Kundistorted Camera intrinsic matrix used as new camera matrix for undistortion.
3849
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3849
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3850
3850
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3851
3851
@param alpha The skew coefficient.
3852
3852
@param distorted Output array of image points, 1xN/Nx1 2-channel, or vector\<Point2f\> .
@@ -3858,7 +3858,7 @@ namespace fisheye
3858
3858
3859
3859
@param distorted Array of object points, 1xN/Nx1 2-channel (or vector\<Point2f\> ), where N is the
3860
3860
number of points in the view.
3861
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3861
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3862
3862
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3863
3863
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
3864
3864
1-channel or 1x1 3-channel
@@ -3873,7 +3873,7 @@ namespace fisheye
3873
3873
/* * @brief Computes undistortion and rectification maps for image transform by #remap. If D is empty zero
3874
3874
distortion is used, if R or P is empty identity matrixes are used.
3875
3875
3876
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3876
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3877
3877
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3878
3878
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
3879
3879
1-channel or 1x1 3-channel
@@ -3891,7 +3891,7 @@ namespace fisheye
3891
3891
3892
3892
@param distorted image with fisheye lens distortion.
3893
3893
@param undistorted Output image with compensated fisheye lens distortion.
3894
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3894
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3895
3895
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3896
3896
@param Knew Camera intrinsic matrix of the distorted image. By default, it is the identity matrix but you
3897
3897
may additionally scale and shift the result by using a different matrix.
@@ -3920,7 +3920,7 @@ namespace fisheye
3920
3920
3921
3921
/* * @brief Estimates new camera intrinsic matrix for undistortion or rectification.
3922
3922
3923
- @param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3923
+ @param K Camera intrinsic matrix \f$\ cameramatrix{K}\f$.
3924
3924
@param image_size Size of the image
3925
3925
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3926
3926
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
@@ -3947,7 +3947,7 @@ namespace fisheye
3947
3947
@ref fisheye::CALIB_USE_INTRINSIC_GUESS is specified, some or all of fx, fy, cx, cy must be
3948
3948
initialized before calling the function.
3949
3949
@param D Output vector of distortion coefficients \f$\distcoeffsfisheye\f$.
3950
- @param rvecs Output vector of rotation vectors (see Rodrigues ) estimated for each pattern view.
3950
+ @param rvecs Output vector of rotation vectors (see @ref Rodrigues ) estimated for each pattern view.
3951
3951
That is, each k-th rotation vector together with the corresponding k-th translation vector (see
3952
3952
the next output parameter description) brings the calibration pattern from the model coordinate
3953
3953
space (in which object points are specified) to the world coordinate space, that is, a real
@@ -4088,7 +4088,7 @@ optimization. It is the \f$max(width,height)/\pi\f$ or the provided \f$f_x\f$, \
4088
4088
- for all the other flags, number of input points must be >= 4 and object points can be in any configuration.
4089
4089
@param criteria Termination criteria for internal undistortPoints call.
4090
4090
The function interally undistorts points with @ref undistortPoints and call @ref cv::solvePnP,
4091
- thus the input are very similar. Check there and Perspective-n-Points is described in @ref calib3d_solvePnP
4091
+ thus the input are very similar. More information about Perspective-n-Points is described in @ref calib3d_solvePnP
4092
4092
for more information.
4093
4093
*/
4094
4094
CV_EXPORTS_W bool solvePnP ( InputArray objectPoints, InputArray imagePoints,
0 commit comments