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
d1493c1a
Commit
d1493c1a
authored
Mar 28, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refined this object's interface slightly.
parent
a4e63d29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
scan_image_boxes.h
dlib/image_processing/scan_image_boxes.h
+3
-0
scan_image_boxes_abstract.h
dlib/image_processing/scan_image_boxes_abstract.h
+9
-3
No files found.
dlib/image_processing/scan_image_boxes.h
View file @
d1493c1a
...
...
@@ -71,6 +71,9 @@ namespace dlib
const
box_generator
&
bg
);
const
box_generator
&
get_box_generator
(
)
const
{
return
detect_boxes
;
}
inline
void
copy_configuration
(
const
scan_image_boxes
&
item
);
...
...
dlib/image_processing/scan_image_boxes_abstract.h
View file @
d1493c1a
...
...
@@ -194,13 +194,19 @@ namespace dlib
);
/*!
ensures
- Let BASE_BG denote the box_generator object used internally for candidate
box generation. Then this function performs:
BASE_BG = bg;
- #get_box_generator() == bg
(i.e. this function allows you to configure the parameters of the
underlying box generator used by a scan_image_boxes object)
!*/
const
box_generator
&
get_box_generator
(
)
const
;
/*!
ensures
- returns the box_generator used by this object to generate candidate
object locations.
!*/
void
copy_configuration
(
const
scan_image_boxes
&
item
);
...
...
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