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
5bde5c52
Commit
5bde5c52
authored
Feb 10, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made the index outputs of run_multiple_rect_detectors be integers rather than doubles.
parent
1ec5a945
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
simple_object_detector_py.h
tools/python/src/simple_object_detector_py.h
+11
-9
No files found.
tools/python/src/simple_object_detector_py.h
View file @
5bde5c52
...
...
@@ -18,7 +18,7 @@ namespace dlib
std
::
vector
<
rect_detection
>&
rect_detections
,
std
::
vector
<
rectangle
>&
rectangles
,
std
::
vector
<
double
>&
detection_confidences
,
std
::
vector
<
double
>&
weight_indices
std
::
vector
<
unsigned
long
>&
weight_indices
)
{
rectangles
.
clear
();
...
...
@@ -40,7 +40,7 @@ namespace dlib
const
unsigned
int
upsampling_amount
,
const
double
adjust_threshold
,
std
::
vector
<
double
>&
detection_confidences
,
std
::
vector
<
double
>&
weight_indices
std
::
vector
<
unsigned
long
>&
weight_indices
)
{
pyramid_down
<
2
>
pyr
;
...
...
@@ -120,7 +120,7 @@ namespace dlib
const
unsigned
int
upsampling_amount
,
const
double
adjust_threshold
,
std
::
vector
<
double
>&
detection_confidences
,
std
::
vector
<
double
>&
weight_indices
std
::
vector
<
unsigned
long
>&
weight_indices
)
{
pyramid_down
<
2
>
pyr
;
...
...
@@ -202,7 +202,7 @@ namespace dlib
)
{
std
::
vector
<
double
>
detection_confidences
;
std
::
vector
<
double
>
weight_indices
;
std
::
vector
<
unsigned
long
>
weight_indices
;
const
double
adjust_threshold
=
0
.
0
;
return
run_detector_with_upscale1
(
detector
,
img
,
upsampling_amount
,
...
...
@@ -219,7 +219,7 @@ namespace dlib
py
::
tuple
t
;
std
::
vector
<
double
>
detection_confidences
;
std
::
vector
<
double
>
weight_indices
;
std
::
vector
<
unsigned
long
>
weight_indices
;
std
::
vector
<
rectangle
>
rectangles
;
rectangles
=
run_detector_with_upscale1
(
detector
,
img
,
upsampling_amount
,
...
...
@@ -227,7 +227,8 @@ namespace dlib
detection_confidences
,
weight_indices
);
return
py
::
make_tuple
(
rectangles
,
detection_confidences
,
weight_indices
);
vector_to_python_list
(
detection_confidences
),
vector_to_python_list
(
weight_indices
));
}
inline
py
::
tuple
run_multiple_rect_detectors
(
...
...
@@ -243,11 +244,11 @@ namespace dlib
// Now copy the data into dlib based objects.
for
(
unsigned
long
i
=
0
;
i
<
num_detectors
;
++
i
)
{
vector_detectors
.
push_back
(
detectors
[
i
].
cast
<
simple_object_detector
>
());
vector_detectors
.
push_back
(
detectors
[
i
].
cast
<
simple_object_detector
>
());
}
std
::
vector
<
double
>
detection_confidences
;
std
::
vector
<
double
>
weight_indices
;
std
::
vector
<
unsigned
long
>
weight_indices
;
std
::
vector
<
rectangle
>
rectangles
;
rectangles
=
run_detectors_with_upscale1
(
vector_detectors
,
img
,
upsampling_amount
,
...
...
@@ -255,7 +256,8 @@ namespace dlib
detection_confidences
,
weight_indices
);
return
py
::
make_tuple
(
rectangles
,
detection_confidences
,
weight_indices
);
vector_to_python_list
(
detection_confidences
),
vector_to_python_list
(
weight_indices
));
}
...
...
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