Commit 7ff294db authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #9725 from dericcrago:fixed_boundary_spelling_in_comments

parents 7475d23f a0d7cf89
...@@ -1823,7 +1823,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb, ...@@ -1823,7 +1823,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb,
{ {
if( !checkScalar(_lowerb, stype, lkind, skind) ) if( !checkScalar(_lowerb, stype, lkind, skind) )
CV_Error( CV_StsUnmatchedSizes, CV_Error( CV_StsUnmatchedSizes,
"The lower bounary is neither an array of the same size and same type as src, nor a scalar"); "The lower boundary is neither an array of the same size and same type as src, nor a scalar");
lbScalar = true; lbScalar = true;
} }
...@@ -1832,7 +1832,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb, ...@@ -1832,7 +1832,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb,
{ {
if( !checkScalar(_upperb, stype, ukind, skind) ) if( !checkScalar(_upperb, stype, ukind, skind) )
CV_Error( CV_StsUnmatchedSizes, CV_Error( CV_StsUnmatchedSizes,
"The upper bounary is neither an array of the same size and same type as src, nor a scalar"); "The upper boundary is neither an array of the same size and same type as src, nor a scalar");
ubScalar = true; ubScalar = true;
} }
...@@ -1944,7 +1944,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb, ...@@ -1944,7 +1944,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb,
{ {
if( !checkScalar(lb, src.type(), lkind, skind) ) if( !checkScalar(lb, src.type(), lkind, skind) )
CV_Error( CV_StsUnmatchedSizes, CV_Error( CV_StsUnmatchedSizes,
"The lower bounary is neither an array of the same size and same type as src, nor a scalar"); "The lower boundary is neither an array of the same size and same type as src, nor a scalar");
lbScalar = true; lbScalar = true;
} }
...@@ -1953,7 +1953,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb, ...@@ -1953,7 +1953,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb,
{ {
if( !checkScalar(ub, src.type(), ukind, skind) ) if( !checkScalar(ub, src.type(), ukind, skind) )
CV_Error( CV_StsUnmatchedSizes, CV_Error( CV_StsUnmatchedSizes,
"The upper bounary is neither an array of the same size and same type as src, nor a scalar"); "The upper boundary is neither an array of the same size and same type as src, nor a scalar");
ubScalar = true; ubScalar = true;
} }
......
...@@ -86,7 +86,7 @@ PlanarTarget = namedtuple('PlaneTarget', 'image, rect, keypoints, descrs, data') ...@@ -86,7 +86,7 @@ PlanarTarget = namedtuple('PlaneTarget', 'image, rect, keypoints, descrs, data')
p0 - matched points coords in target image p0 - matched points coords in target image
p1 - matched points coords in input frame p1 - matched points coords in input frame
H - homography matrix from p0 to p1 H - homography matrix from p0 to p1
quad - target bounary quad in input frame quad - target boundary quad in input frame
''' '''
TrackedTarget = namedtuple('TrackedTarget', 'target, p0, p1, H, quad') TrackedTarget = namedtuple('TrackedTarget', 'target, p0, p1, H, quad')
......
...@@ -64,7 +64,7 @@ PlanarTarget = namedtuple('PlaneTarget', 'image, rect, keypoints, descrs, data') ...@@ -64,7 +64,7 @@ PlanarTarget = namedtuple('PlaneTarget', 'image, rect, keypoints, descrs, data')
p0 - matched points coords in target image p0 - matched points coords in target image
p1 - matched points coords in input frame p1 - matched points coords in input frame
H - homography matrix from p0 to p1 H - homography matrix from p0 to p1
quad - target bounary quad in input frame quad - target boundary quad in input frame
''' '''
TrackedTarget = namedtuple('TrackedTarget', 'target, p0, p1, H, quad') TrackedTarget = namedtuple('TrackedTarget', 'target, p0, p1, H, quad')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment