@@ -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
@@ -826,7 +826,7 @@ class CV_EXPORTS GeneralizedHough : public Algorithm
826
826
};
827
827
828
828
// ! Ballard, D.H. (1981). Generalizing the Hough transform to detect arbitrary shapes. Pattern Recognition 13 (2): 111-122.
829
- // ! Detects position only without traslation and rotation
829
+ // ! Detects position only without translation and rotation
830
830
class CV_EXPORTS GeneralizedHoughBallard : public GeneralizedHough
831
831
{
832
832
public:
@@ -840,7 +840,7 @@ class CV_EXPORTS GeneralizedHoughBallard : public GeneralizedHough
840
840
};
841
841
842
842
// ! 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.
843
- // ! Detects position, traslation and rotation
843
+ // ! Detects position, translation and rotation
844
844
class CV_EXPORTS GeneralizedHoughGuil : public GeneralizedHough
845
845
{
846
846
public:
@@ -995,7 +995,7 @@ class CV_EXPORTS_W Subdiv2D
995
995
- The point is outside the subdivision reference rectangle. The function returns PTLOC_OUTSIDE_RECT
996
996
and no pointers are filled.
997
997
- One of input arguments is invalid. A runtime error is raised or, if silent or “parent” error
998
- processing mode is selected, CV_PTLOC_ERROR is returnd .
998
+ processing mode is selected, CV_PTLOC_ERROR is returned .
999
999
*/
1000
1000
CV_WRAP int locate (Point2f pt, CV_OUT int & edge, CV_OUT int & vertex);
1001
1001
@@ -1407,7 +1407,7 @@ CV_EXPORTS_W void bilateralFilter( InputArray src, OutputArray dst, int d,
1407
1407
1408
1408
/* * @brief Blurs an image using the box filter.
1409
1409
1410
- The function smoothes an image using the kernel:
1410
+ The function smooths an image using the kernel:
1411
1411
1412
1412
\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]
1413
1413
@@ -1459,7 +1459,7 @@ CV_EXPORTS_W void sqrBoxFilter( InputArray _src, OutputArray _dst, int ddepth,
1459
1459
1460
1460
/* * @brief Blurs an image using the normalized box filter.
1461
1461
1462
- The function smoothes an image using the kernel:
1462
+ The function smooths an image using the kernel:
1463
1463
1464
1464
\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]
1465
1465
@@ -3584,7 +3584,7 @@ CV_EXPORTS_W void cvtColor( InputArray src, OutputArray dst, int code, int dstCn
3584
3584
3585
3585
// ! @} imgproc_misc
3586
3586
3587
- // main function for all demosaicing procceses
3587
+ // main function for all demosaicing processes
3588
3588
CV_EXPORTS_W void demosaicing (InputArray _src, OutputArray _dst, int code, int dcn = 0 );
3589
3589
3590
3590
// ! @addtogroup imgproc_shape
@@ -3766,7 +3766,7 @@ If mode equals to cv::RETR_CCOMP or cv::RETR_FLOODFILL, the input can also be a
3766
3766
std::vector<std::vector<cv::Point> >).
3767
3767
@param hierarchy Optional output vector (e.g. std::vector<cv::Vec4i>), containing information about the image topology. It has
3768
3768
as many elements as the number of contours. For each i-th contour contours[i], the elements
3769
- hierarchy[i][0] , hiearchy [i][1] , hiearchy [i][2] , and hiearchy [i][3] are set to 0-based indices
3769
+ hierarchy[i][0] , hierarchy [i][1] , hierarchy [i][2] , and hierarchy [i][3] are set to 0-based indices
3770
3770
in contours of the next and previous contours at the same hierarchical level, the first child
3771
3771
contour and the parent contour, respectively. If for the contour i there are no next, previous,
3772
3772
parent, or nested contours, the corresponding elements of hierarchy[i] will be negative.
@@ -4054,7 +4054,7 @@ CV_EXPORTS_W double pointPolygonTest( InputArray contour, Point2f pt, bool measu
4054
4054
4055
4055
/* * @brief Finds out if there is any intersection between two rotated rectangles.
4056
4056
4057
- If there is then the vertices of the interesecting region are returned as well.
4057
+ If there is then the vertices of the intersecting region are returned as well.
4058
4058
4059
4059
Below are some examples of intersection configurations. The hatched pattern indicates the
4060
4060
intersecting region and the red vertices are returned by the function.
@@ -4074,11 +4074,11 @@ CV_EXPORTS_W int rotatedRectangleIntersection( const RotatedRect& rect1, const R
4074
4074
CV_EXPORTS_W Ptr<CLAHE> createCLAHE (double clipLimit = 40.0 , Size tileGridSize = Size(8 , 8 ));
4075
4075
4076
4076
// ! Ballard, D.H. (1981). Generalizing the Hough transform to detect arbitrary shapes. Pattern Recognition 13 (2): 111-122.
4077
- // ! Detects position only without traslation and rotation
4077
+ // ! Detects position only without translation and rotation
4078
4078
CV_EXPORTS Ptr<GeneralizedHoughBallard> createGeneralizedHoughBallard ();
4079
4079
4080
4080
// ! 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.
4081
- // ! Detects position, traslation and rotation
4081
+ // ! Detects position, translation and rotation
4082
4082
CV_EXPORTS Ptr<GeneralizedHoughGuil> createGeneralizedHoughGuil ();
4083
4083
4084
4084
// ! Performs linear blending of two images
0 commit comments