@@ -416,7 +416,7 @@ enum ConnectedComponentsTypes {
416
416
// ! connected components algorithm
417
417
enum ConnectedComponentsAlgorithmsTypes {
418
418
CCL_WU = 0 , // !< SAUF algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
419
- CCL_DEFAULT = -1 , // !< BBDT algortihm for 8-way connectivity, SAUF algorithm for 4-way connectivity
419
+ CCL_DEFAULT = -1 , // !< BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
420
420
CCL_GRANA = 1 // !< BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
421
421
};
422
422
@@ -816,7 +816,7 @@ class CV_EXPORTS GeneralizedHough : public Algorithm
816
816
};
817
817
818
818
// ! Ballard, D.H. (1981). Generalizing the Hough transform to detect arbitrary shapes. Pattern Recognition 13 (2): 111-122.
819
- // ! Detects position only without traslation and rotation
819
+ // ! Detects position only without translation and rotation
820
820
class CV_EXPORTS GeneralizedHoughBallard : public GeneralizedHough
821
821
{
822
822
public:
@@ -830,7 +830,7 @@ class CV_EXPORTS GeneralizedHoughBallard : public GeneralizedHough
830
830
};
831
831
832
832
// ! Guil, N., González-Linares, J.M. and Zapata, E.L. (1999). Bidimensional shape detection using an invariant approach. Pattern Recognition 32 (6): 1025-1038.
833
- // ! Detects position, traslation and rotation
833
+ // ! Detects position, translation and rotation
834
834
class CV_EXPORTS GeneralizedHoughGuil : public GeneralizedHough
835
835
{
836
836
public:
@@ -985,7 +985,7 @@ class CV_EXPORTS_W Subdiv2D
985
985
- The point is outside the subdivision reference rectangle. The function returns PTLOC_OUTSIDE_RECT
986
986
and no pointers are filled.
987
987
- One of input arguments is invalid. A runtime error is raised or, if silent or “parent” error
988
- processing mode is selected, CV_PTLOC_ERROR is returnd .
988
+ processing mode is selected, CV_PTLOC_ERROR is returned .
989
989
*/
990
990
CV_WRAP int locate (Point2f pt, CV_OUT int & edge, CV_OUT int & vertex);
991
991
@@ -1397,7 +1397,7 @@ CV_EXPORTS_W void bilateralFilter( InputArray src, OutputArray dst, int d,
1397
1397
1398
1398
/* * @brief Blurs an image using the box filter.
1399
1399
1400
- The function smoothes an image using the kernel:
1400
+ The function smooths an image using the kernel:
1401
1401
1402
1402
\f[\texttt{K} = \alpha \begin{bmatrix} 1 & 1 & 1 & \cdots & 1 & 1 \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \hdotsfor{6} \\ 1 & 1 & 1 & \cdots & 1 & 1 \end{bmatrix}\f]
1403
1403
@@ -1449,7 +1449,7 @@ CV_EXPORTS_W void sqrBoxFilter( InputArray _src, OutputArray _dst, int ddepth,
1449
1449
1450
1450
/* * @brief Blurs an image using the normalized box filter.
1451
1451
1452
- The function smoothes an image using the kernel:
1452
+ The function smooths an image using the kernel:
1453
1453
1454
1454
\f[\texttt{K} = \frac{1}{\texttt{ksize.width*ksize.height}} \begin{bmatrix} 1 & 1 & 1 & \cdots & 1 & 1 \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \hdotsfor{6} \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \end{bmatrix}\f]
1455
1455
@@ -3574,7 +3574,7 @@ CV_EXPORTS_W void cvtColor( InputArray src, OutputArray dst, int code, int dstCn
3574
3574
3575
3575
// ! @} imgproc_misc
3576
3576
3577
- // main function for all demosaicing procceses
3577
+ // main function for all demosaicing processes
3578
3578
CV_EXPORTS_W void demosaicing (InputArray _src, OutputArray _dst, int code, int dcn = 0 );
3579
3579
3580
3580
// ! @addtogroup imgproc_shape
@@ -3756,7 +3756,7 @@ If mode equals to cv::RETR_CCOMP or cv::RETR_FLOODFILL, the input can also be a
3756
3756
std::vector<std::vector<cv::Point> >).
3757
3757
@param hierarchy Optional output vector (e.g. std::vector<cv::Vec4i>), containing information about the image topology. It has
3758
3758
as many elements as the number of contours. For each i-th contour contours[i], the elements
3759
- hierarchy[i][0] , hiearchy [i][1] , hiearchy [i][2] , and hiearchy [i][3] are set to 0-based indices
3759
+ hierarchy[i][0] , hierarchy [i][1] , hierarchy [i][2] , and hierarchy [i][3] are set to 0-based indices
3760
3760
in contours of the next and previous contours at the same hierarchical level, the first child
3761
3761
contour and the parent contour, respectively. If for the contour i there are no next, previous,
3762
3762
parent, or nested contours, the corresponding elements of hierarchy[i] will be negative.
@@ -4044,7 +4044,7 @@ CV_EXPORTS_W double pointPolygonTest( InputArray contour, Point2f pt, bool measu
4044
4044
4045
4045
/* * @brief Finds out if there is any intersection between two rotated rectangles.
4046
4046
4047
- If there is then the vertices of the interesecting region are returned as well.
4047
+ If there is then the vertices of the intersecting region are returned as well.
4048
4048
4049
4049
Below are some examples of intersection configurations. The hatched pattern indicates the
4050
4050
intersecting region and the red vertices are returned by the function.
@@ -4064,11 +4064,11 @@ CV_EXPORTS_W int rotatedRectangleIntersection( const RotatedRect& rect1, const R
4064
4064
CV_EXPORTS_W Ptr<CLAHE> createCLAHE (double clipLimit = 40.0 , Size tileGridSize = Size(8 , 8 ));
4065
4065
4066
4066
// ! Ballard, D.H. (1981). Generalizing the Hough transform to detect arbitrary shapes. Pattern Recognition 13 (2): 111-122.
4067
- // ! Detects position only without traslation and rotation
4067
+ // ! Detects position only without translation and rotation
4068
4068
CV_EXPORTS Ptr<GeneralizedHoughBallard> createGeneralizedHoughBallard ();
4069
4069
4070
4070
// ! Guil, N., González-Linares, J.M. and Zapata, E.L. (1999). Bidimensional shape detection using an invariant approach. Pattern Recognition 32 (6): 1025-1038.
4071
- // ! Detects position, traslation and rotation
4071
+ // ! Detects position, translation and rotation
4072
4072
CV_EXPORTS Ptr<GeneralizedHoughGuil> createGeneralizedHoughGuil ();
4073
4073
4074
4074
// ! Performs linear blending of two images
0 commit comments