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
7da29fb9
Commit
7da29fb9
authored
Aug 18, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated docs
parent
09b4ec67
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
5 deletions
+38
-5
imaging.xml
docs/docs/imaging.xml
+34
-3
ml.xml
docs/docs/ml.xml
+3
-2
term_index.xml
docs/docs/term_index.xml
+1
-0
No files found.
docs/docs/imaging.xml
View file @
7da29fb9
...
...
@@ -86,6 +86,7 @@
<item>
find_points_above_thresh
</item>
<item>
scan_image_pyramid
</item>
<item>
scan_image_boxes
</item>
<item>
scan_image_custom
</item>
<item>
find_candidate_object_locations
</item>
<item>
test_box_overlap
</item>
<item>
remove_unobtainable_rectangles
</item>
...
...
@@ -1729,6 +1730,34 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>
scan_image_custom
</name>
<file>
dlib/image_processing.h
</file>
<spec_file
link=
"true"
>
dlib/image_processing/scan_image_custom_abstract.h
</spec_file>
<description>
This object is a tool for running a classifier over an image with the goal
of localizing each object present. The localization is in the form of the
bounding box around each object of interest.
<p>
Unlike the
<a
href=
"#scan_image_pyramid"
>
scan_image_pyramid
</a>
and
<a
href=
"#scan_image_boxes"
>
scan_image_boxes
</a>
objects, this image
scanner delegates all the work of constructing the object feature vector to
a user supplied feature extraction object. That is, scan_image_custom
simply asks the supplied feature extractor what boxes in the image we
should investigate and then asks the feature extractor for the complete
feature vector for each box. That is, scan_image_custom does not apply any
kind of pyramiding or other higher level processing to the features coming
out of the feature extractor. That means that when you use
scan_image_custom it is completely up to you to define the feature vector
used with each image box.
</p>
</description>
</component>
<!-- ************************************************************************* -->
<component>
...
...
@@ -1750,9 +1779,11 @@
<spec_file
link=
"true"
>
dlib/image_processing/object_detector_abstract.h
</spec_file>
<description>
This object is a tool for detecting the positions of objects in an image. In
particular, it is a simple container to aggregate an instance of the
<a
href=
"#scan_image_pyramid"
>
scan_image_pyramid
</a>
or
<a
href=
"#scan_image_boxes"
>
scan_image_boxes
</a>
classes, the weight vector
particular, it is a simple container to aggregate an instance of an image
scanner object (either
<a
href=
"#scan_image_pyramid"
>
scan_image_pyramid
</a>
,
<a
href=
"#scan_image_boxes"
>
scan_image_boxes
</a>
, or
<a
href=
"#scan_image_custom"
>
scan_image_custom
</a>
), the weight vector
needed by one of these image scanners, and finally an instance of
<a
href=
"#test_box_overlap"
>
test_box_overlap
</a>
. The test_box_overlap object
is used to perform non-max suppression on the output of the image scanner
...
...
docs/docs/ml.xml
View file @
7da29fb9
...
...
@@ -2694,8 +2694,9 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
<spec_file
link=
"true"
>
dlib/svm/structural_svm_object_detection_problem_abstract.h
</spec_file>
<description>
This object is a tool for learning the parameter vector needed to use
a
<a
href=
"imaging.html#scan_image_pyramid"
>
scan_image_pyramid
</a>
or
<a
href=
"imaging.html#scan_image_boxes"
>
scan_image_boxes
</a>
object.
a
<a
href=
"imaging.html#scan_image_pyramid"
>
scan_image_pyramid
</a>
,
<a
href=
"imaging.html#scan_image_boxes"
>
scan_image_boxes
</a>
, or
<a
href=
"imaging.html#scan_image_custom"
>
scan_image_custom
</a>
object.
<p>
It learns the parameter vector by formulating the problem as a
<a
href=
"#structural_svm_problem"
>
structural
...
...
docs/docs/term_index.xml
View file @
7da29fb9
...
...
@@ -1263,6 +1263,7 @@
<term
file=
"imaging.html"
name=
"scan_image_pyramid"
include=
"dlib/image_processing.h"
/>
<term
file=
"imaging.html"
name=
"scan_image_boxes"
include=
"dlib/image_processing.h"
/>
<term
file=
"dlib/image_processing/scan_image_boxes_abstract.h.html"
name=
"default_box_generator"
include=
"dlib/image_processing.h"
/>
<term
file=
"imaging.html"
name=
"scan_image_custom"
include=
"dlib/image_processing.h"
/>
<term
file=
"imaging.html"
name=
"compute_box_dimensions"
include=
"dlib/image_processing.h"
/>
<term
file=
"imaging.html"
name=
"create_single_box_detection_template"
include=
"dlib/image_processing.h"
/>
<term
file=
"imaging.html"
name=
"create_overlapped_2x2_detection_template"
include=
"dlib/image_processing.h"
/>
...
...
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