Skip to content

Commit 960aaa3

Browse files
authored
Merge pull request opencv#26094 from catree:fix_cameramatrix_doc_typo
Fix typo with cameramatrix command for documentation
2 parents b72d7e3 + 165bf25 commit 960aaa3

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

doc/opencv.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@ @inproceedings{Zuliani2014RANSACFD
13101310
title={RANSAC for Dummies With examples using the RANSAC toolbox for Matlab \& Octave and more...},
13111311
author={Marco Zuliani},
13121312
year={2014},
1313-
url = {https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.475.1243&rep=rep1&type=pdf}
1313+
url = {http://www.marcozuliani.com/docs/RANSAC4Dummies.pdf}
13141314
}
13151315
@inproceedings{forstner1987fast,
13161316
title={A fast operator for detection and precise location of distincs points, corners and center of circular features},

modules/calib3d/include/opencv2/calib3d.hpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3805,7 +3805,7 @@ namespace fisheye
38053805
@param imagePoints Output array of image points, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel, or
38063806
vector\<Point2f\>.
38073807
@param affine
3808-
@param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3808+
@param K Camera intrinsic matrix \f$\cameramatrix{K}\f$.
38093809
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
38103810
@param alpha The skew coefficient.
38113811
@param jacobian Optional output 2Nx15 jacobian matrix of derivatives of image points with respect
@@ -3829,7 +3829,7 @@ namespace fisheye
38293829
38303830
@param undistorted Array of object points, 1xN/Nx1 2-channel (or vector\<Point2f\> ), where N is
38313831
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$.
38333833
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
38343834
@param alpha The skew coefficient.
38353835
@param distorted Output array of image points, 1xN/Nx1 2-channel, or vector\<Point2f\> .
@@ -3841,12 +3841,12 @@ namespace fisheye
38413841
CV_EXPORTS_W void distortPoints(InputArray undistorted, OutputArray distorted, InputArray K, InputArray D, double alpha = 0);
38423842

38433843
/** @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
38453845
camera matrix, e.g. output of #estimateNewCameraMatrixForUndistortRectify.
38463846
@param undistorted Array of object points, 1xN/Nx1 2-channel (or vector\<Point2f\> ), where N is
38473847
the number of points in the view.
38483848
@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$.
38503850
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
38513851
@param alpha The skew coefficient.
38523852
@param distorted Output array of image points, 1xN/Nx1 2-channel, or vector\<Point2f\> .
@@ -3858,7 +3858,7 @@ namespace fisheye
38583858
38593859
@param distorted Array of object points, 1xN/Nx1 2-channel (or vector\<Point2f\> ), where N is the
38603860
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$.
38623862
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
38633863
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
38643864
1-channel or 1x1 3-channel
@@ -3873,7 +3873,7 @@ namespace fisheye
38733873
/** @brief Computes undistortion and rectification maps for image transform by #remap. If D is empty zero
38743874
distortion is used, if R or P is empty identity matrixes are used.
38753875
3876-
@param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3876+
@param K Camera intrinsic matrix \f$\cameramatrix{K}\f$.
38773877
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
38783878
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
38793879
1-channel or 1x1 3-channel
@@ -3891,7 +3891,7 @@ namespace fisheye
38913891
38923892
@param distorted image with fisheye lens distortion.
38933893
@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$.
38953895
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
38963896
@param Knew Camera intrinsic matrix of the distorted image. By default, it is the identity matrix but you
38973897
may additionally scale and shift the result by using a different matrix.
@@ -3920,7 +3920,7 @@ namespace fisheye
39203920

39213921
/** @brief Estimates new camera intrinsic matrix for undistortion or rectification.
39223922
3923-
@param K Camera intrinsic matrix \f$cameramatrix{K}\f$.
3923+
@param K Camera intrinsic matrix \f$\cameramatrix{K}\f$.
39243924
@param image_size Size of the image
39253925
@param D Input vector of distortion coefficients \f$\distcoeffsfisheye\f$.
39263926
@param R Rectification transformation in the object space: 3x3 1-channel, or vector: 3x1/1x3
@@ -3947,7 +3947,7 @@ namespace fisheye
39473947
@ref fisheye::CALIB_USE_INTRINSIC_GUESS is specified, some or all of fx, fy, cx, cy must be
39483948
initialized before calling the function.
39493949
@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.
39513951
That is, each k-th rotation vector together with the corresponding k-th translation vector (see
39523952
the next output parameter description) brings the calibration pattern from the model coordinate
39533953
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$, \
40884088
- for all the other flags, number of input points must be >= 4 and object points can be in any configuration.
40894089
@param criteria Termination criteria for internal undistortPoints call.
40904090
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
40924092
for more information.
40934093
*/
40944094
CV_EXPORTS_W bool solvePnP( InputArray objectPoints, InputArray imagePoints,

0 commit comments

Comments
 (0)