Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
a0d7cf89
Commit
a0d7cf89
authored
Sep 27, 2017
by
Deric Crago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed 'boundary' spelling
parent
7475d23f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
arithm.cpp
modules/core/src/arithm.cpp
+4
-4
test_feature_homography.py
modules/python/test/test_feature_homography.py
+1
-1
plane_tracker.py
samples/python/plane_tracker.py
+1
-1
No files found.
modules/core/src/arithm.cpp
View file @
a0d7cf89
...
...
@@ -1823,7 +1823,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb,
{
if
(
!
checkScalar
(
_lowerb
,
stype
,
lkind
,
skind
)
)
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 boun
d
ary is neither an array of the same size and same type as src, nor a scalar"
);
lbScalar
=
true
;
}
...
...
@@ -1832,7 +1832,7 @@ static bool ocl_inRange( InputArray _src, InputArray _lowerb,
{
if
(
!
checkScalar
(
_upperb
,
stype
,
ukind
,
skind
)
)
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 boun
d
ary is neither an array of the same size and same type as src, nor a scalar"
);
ubScalar
=
true
;
}
...
...
@@ -1944,7 +1944,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb,
{
if
(
!
checkScalar
(
lb
,
src
.
type
(),
lkind
,
skind
)
)
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 boun
d
ary is neither an array of the same size and same type as src, nor a scalar"
);
lbScalar
=
true
;
}
...
...
@@ -1953,7 +1953,7 @@ void cv::inRange(InputArray _src, InputArray _lowerb,
{
if
(
!
checkScalar
(
ub
,
src
.
type
(),
ukind
,
skind
)
)
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 boun
d
ary is neither an array of the same size and same type as src, nor a scalar"
);
ubScalar
=
true
;
}
...
...
modules/python/test/test_feature_homography.py
View file @
a0d7cf89
...
...
@@ -86,7 +86,7 @@ PlanarTarget = namedtuple('PlaneTarget', 'image, rect, keypoints, descrs, data')
p0 - matched points coords in target image
p1 - matched points coords in input frame
H - homography matrix from p0 to p1
quad - target bounary quad in input frame
quad - target boun
d
ary quad in input frame
'''
TrackedTarget
=
namedtuple
(
'TrackedTarget'
,
'target, p0, p1, H, quad'
)
...
...
samples/python/plane_tracker.py
View file @
a0d7cf89
...
...
@@ -64,7 +64,7 @@ PlanarTarget = namedtuple('PlaneTarget', 'image, rect, keypoints, descrs, data')
p0 - matched points coords in target image
p1 - matched points coords in input frame
H - homography matrix from p0 to p1
quad - target bounary quad in input frame
quad - target boun
d
ary quad in input frame
'''
TrackedTarget
=
namedtuple
(
'TrackedTarget'
,
'target, p0, p1, H, quad'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment