Skip to content

Commit a0d7cf8

Browse files
committed
Fixed 'boundary' spelling
1 parent 7475d23 commit a0d7cf8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

modules/core/src/arithm.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1823,7 +1823,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb,
18231823
{
18241824
if( !checkScalar(_lowerb, stype, lkind, skind) )
18251825
CV_Error( CV_StsUnmatchedSizes,
1826-
"The lower bounary is neither an array of the same size and same type as src, nor a scalar");
1826+
"The lower boundary is neither an array of the same size and same type as src, nor a scalar");
18271827
lbScalar = true;
18281828
}
18291829

@@ -1832,7 +1832,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb,
18321832
{
18331833
if( !checkScalar(_upperb, stype, ukind, skind) )
18341834
CV_Error( CV_StsUnmatchedSizes,
1835-
"The upper bounary is neither an array of the same size and same type as src, nor a scalar");
1835+
"The upper boundary is neither an array of the same size and same type as src, nor a scalar");
18361836
ubScalar = true;
18371837
}
18381838

@@ -1944,7 +1944,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb,
19441944
{
19451945
if( !checkScalar(lb, src.type(), lkind, skind) )
19461946
CV_Error( CV_StsUnmatchedSizes,
1947-
"The lower bounary is neither an array of the same size and same type as src, nor a scalar");
1947+
"The lower boundary is neither an array of the same size and same type as src, nor a scalar");
19481948
lbScalar = true;
19491949
}
19501950

@@ -1953,7 +1953,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb,
19531953
{
19541954
if( !checkScalar(ub, src.type(), ukind, skind) )
19551955
CV_Error( CV_StsUnmatchedSizes,
1956-
"The upper bounary is neither an array of the same size and same type as src, nor a scalar");
1956+
"The upper boundary is neither an array of the same size and same type as src, nor a scalar");
19571957
ubScalar = true;
19581958
}
19591959

modules/python/test/test_feature_homography.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def test_feature_homography(self):
8686
p0 - matched points coords in target image
8787
p1 - matched points coords in input frame
8888
H - homography matrix from p0 to p1
89-
quad - target bounary quad in input frame
89+
quad - target boundary quad in input frame
9090
'''
9191
TrackedTarget = namedtuple('TrackedTarget', 'target, p0, p1, H, quad')
9292

samples/python/plane_tracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
p0 - matched points coords in target image
6565
p1 - matched points coords in input frame
6666
H - homography matrix from p0 to p1
67-
quad - target bounary quad in input frame
67+
quad - target boundary quad in input frame
6868
'''
6969
TrackedTarget = namedtuple('TrackedTarget', 'target, p0, p1, H, quad')
7070

0 commit comments

Comments
 (0)