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
7847038b
Commit
7847038b
authored
Mar 24, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplified code slightly and filled out the spec
parent
94b03445
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
scan_image_boxes.h
dlib/image_processing/scan_image_boxes.h
+2
-6
scan_image_boxes_abstract.h
dlib/image_processing/scan_image_boxes_abstract.h
+0
-0
No files found.
dlib/image_processing/scan_image_boxes.h
View file @
7847038b
...
...
@@ -29,10 +29,6 @@ namespace dlib
rects
.
clear
();
find_candidate_object_locations
(
img
,
rects
);
}
void
copy_configuration
(
const
default_box_generator
&
){}
};
inline
void
serialize
(
const
default_box_generator
&
,
std
::
ostream
&
)
{}
...
...
@@ -341,7 +337,7 @@ namespace dlib
const
box_generator
&
bg
)
{
detect_boxes
.
copy_configuration
(
bg
)
;
detect_boxes
=
bg
;
}
// ----------------------------------------------------------------------------------------
...
...
@@ -356,7 +352,7 @@ namespace dlib
)
{
feats
.
copy_configuration
(
item
.
feats
);
detect_boxes
.
copy_configuration
(
item
.
detect_boxes
)
;
detect_boxes
=
item
.
detect_boxes
;
num_spatial_pyramid_levels
=
item
.
num_spatial_pyramid_levels
;
}
...
...
dlib/image_processing/scan_image_boxes_abstract.h
View file @
7847038b
This diff is collapsed.
Click to expand it.
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