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
04626317
Commit
04626317
authored
Dec 29, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made this object cache image scanner objects internally rather than
reconstruct them for each separation oracle call.
parent
46681570
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
structural_svm_object_detection_problem.h
dlib/svm/structural_svm_object_detection_problem.h
+17
-9
No files found.
dlib/svm/structural_svm_object_detection_problem.h
View file @
04626317
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include "structural_svm_problem_threaded.h"
#include "structural_svm_problem_threaded.h"
#include <sstream>
#include <sstream>
#include "../string.h"
#include "../string.h"
#include "../array.h"
namespace
dlib
namespace
dlib
{
{
...
@@ -57,13 +58,16 @@ namespace dlib
...
@@ -57,13 +58,16 @@ namespace dlib
<<
"
\n\t
this: "
<<
this
<<
"
\n\t
this: "
<<
this
);
);
scanner_config
.
copy_configuration
(
scanner
);
scanners
.
set_max_size
(
images
.
size
());
scanners
.
set_size
(
images
.
size
());
max_num_dets
=
0
;
max_num_dets
=
0
;
for
(
unsigned
long
i
=
0
;
i
<
truth_rects
.
size
();
++
i
)
for
(
unsigned
long
i
=
0
;
i
<
truth_rects
.
size
();
++
i
)
{
{
if
(
truth_rects
.
size
()
>
max_num_dets
)
if
(
truth_rects
.
size
()
>
max_num_dets
)
max_num_dets
=
truth_rects
.
size
();
max_num_dets
=
truth_rects
.
size
();
scanners
[
i
].
copy_configuration
(
scanner
);
}
}
max_num_dets
=
max_num_dets
*
3
+
10
;
max_num_dets
=
max_num_dets
*
3
+
10
;
}
}
...
@@ -135,7 +139,7 @@ namespace dlib
...
@@ -135,7 +139,7 @@ namespace dlib
virtual
long
get_num_dimensions
(
virtual
long
get_num_dimensions
(
)
const
)
const
{
{
return
scanner
_config
.
get_num_dimensions
()
+
return
scanner
s
[
0
]
.
get_num_dimensions
()
+
1
;
// for threshold
1
;
// for threshold
}
}
...
@@ -150,10 +154,8 @@ namespace dlib
...
@@ -150,10 +154,8 @@ namespace dlib
feature_vector_type
&
psi
feature_vector_type
&
psi
)
const
)
const
{
{
image_scanner_type
scanner
;
const
image_scanner_type
&
scanner
=
get_scanner
(
idx
);
scanner
.
copy_configuration
(
scanner_config
);
scanner
.
load
(
images
[
idx
]);
psi
.
set_size
(
get_num_dimensions
());
psi
.
set_size
(
get_num_dimensions
());
std
::
vector
<
rectangle
>
mapped_rects
;
std
::
vector
<
rectangle
>
mapped_rects
;
...
@@ -248,13 +250,11 @@ namespace dlib
...
@@ -248,13 +250,11 @@ namespace dlib
feature_vector_type
&
psi
feature_vector_type
&
psi
)
const
)
const
{
{
image_scanner_type
scanner
;
const
image_scanner_type
&
scanner
=
get_scanner
(
idx
);
scanner
.
copy_configuration
(
scanner_config
);
std
::
vector
<
std
::
pair
<
double
,
rectangle
>
>
dets
;
std
::
vector
<
std
::
pair
<
double
,
rectangle
>
>
dets
;
const
double
thresh
=
current_solution
(
scanner
.
get_num_dimensions
());
const
double
thresh
=
current_solution
(
scanner
.
get_num_dimensions
());
scanner
.
load
(
images
[
idx
]);
scanner
.
detect
(
current_solution
,
dets
,
thresh
-
loss_per_false_alarm
);
scanner
.
detect
(
current_solution
,
dets
,
thresh
-
loss_per_false_alarm
);
...
@@ -390,10 +390,18 @@ namespace dlib
...
@@ -390,10 +390,18 @@ namespace dlib
}
}
const
image_scanner_type
&
get_scanner
(
long
idx
)
const
{
if
(
scanners
[
idx
].
is_loaded_with_image
()
==
false
)
scanners
[
idx
].
load
(
images
[
idx
]);
return
scanners
[
idx
];
}
overlap_tester_type
boxes_overlap
;
overlap_tester_type
boxes_overlap
;
image_scanner_type
scanner_config
;
mutable
typename
array
<
image_scanner_type
>::
kernel_2a
scanners
;
const
image_array_type
&
images
;
const
image_array_type
&
images
;
const
std
::
vector
<
std
::
vector
<
rectangle
>
>&
truth_rects
;
const
std
::
vector
<
std
::
vector
<
rectangle
>
>&
truth_rects
;
...
...
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