Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
d1493c1a
Commit
d1493c1a
authored
Mar 27, 2013
by
Davis King
Browse files
Refined this object's interface slightly.
parent
a4e63d29
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
dlib/image_processing/scan_image_boxes.h
dlib/image_processing/scan_image_boxes.h
+3
-0
dlib/image_processing/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