Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
11e574ff
Commit
11e574ff
authored
Nov 23, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set a default value for the second argument of test_box_overlap's constructor.
Also added overlaps_any_box().
parent
5d264ae5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
4 deletions
+33
-4
box_overlap_testing.h
dlib/image_processing/box_overlap_testing.h
+18
-2
box_overlap_testing_abstract.h
dlib/image_processing/box_overlap_testing_abstract.h
+15
-2
No files found.
dlib/image_processing/box_overlap_testing.h
View file @
11e574ff
...
@@ -19,9 +19,9 @@ namespace dlib
...
@@ -19,9 +19,9 @@ namespace dlib
)
:
match_thresh
(
0
.
5
),
overlap_thresh
(
1
.
0
)
)
:
match_thresh
(
0
.
5
),
overlap_thresh
(
1
.
0
)
{}
{}
test_box_overlap
(
explicit
test_box_overlap
(
double
match_thresh_
,
double
match_thresh_
,
double
overlap_thresh_
double
overlap_thresh_
=
1
.
0
)
:
match_thresh
(
match_thresh_
),
overlap_thresh
(
overlap_thresh_
)
)
:
match_thresh
(
match_thresh_
),
overlap_thresh
(
overlap_thresh_
)
{
{
// make sure requires clause is not broken
// make sure requires clause is not broken
...
@@ -127,6 +127,22 @@ namespace dlib
...
@@ -127,6 +127,22 @@ namespace dlib
return
test_box_overlap
(
max_match_score
,
max_overlap
);
return
test_box_overlap
(
max_match_score
,
max_overlap
);
}
}
// ----------------------------------------------------------------------------------------
inline
bool
overlaps_any_box
(
const
test_box_overlap
&
tester
,
const
std
::
vector
<
rectangle
>&
rects
,
const
rectangle
&
rect
)
{
for
(
unsigned
long
i
=
0
;
i
<
rects
.
size
();
++
i
)
{
if
(
tester
(
rects
[
i
],
rect
))
return
true
;
}
return
false
;
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
dlib/image_processing/box_overlap_testing_abstract.h
View file @
11e574ff
...
@@ -32,9 +32,9 @@ namespace dlib
...
@@ -32,9 +32,9 @@ namespace dlib
- #get_overlap_thresh() == 1.0
- #get_overlap_thresh() == 1.0
!*/
!*/
test_box_overlap
(
explicit
test_box_overlap
(
double
match_thresh
,
double
match_thresh
,
double
overlap_thresh
double
overlap_thresh
=
1
.
0
);
);
/*!
/*!
requires
requires
...
@@ -117,6 +117,19 @@ namespace dlib
...
@@ -117,6 +117,19 @@ namespace dlib
- TBO(A,B) == false
- TBO(A,B) == false
!*/
!*/
// ----------------------------------------------------------------------------------------
bool
overlaps_any_box
(
const
test_box_overlap
&
tester
,
const
std
::
vector
<
rectangle
>&
rects
,
const
rectangle
&
rect
);
/*!
ensures
- returns true if rect overlaps any box in rects and false otherwise. Overlap
is determined based on the given tester object.
!*/
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
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