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
8a0b380b
Commit
8a0b380b
authored
Jul 16, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated docs
parent
166ff18c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
imaging.xml
docs/docs/imaging.xml
+48
-0
term_index.xml
docs/docs/term_index.xml
+6
-0
No files found.
docs/docs/imaging.xml
View file @
8a0b380b
...
@@ -81,6 +81,8 @@
...
@@ -81,6 +81,8 @@
<name>
Object Detection
</name>
<name>
Object Detection
</name>
<item>
object_detector
</item>
<item>
object_detector
</item>
<item>
scan_image
</item>
<item>
scan_image
</item>
<item>
scan_image_movable_parts
</item>
<item>
find_points_above_thresh
</item>
<item>
scan_image_pyramid
</item>
<item>
scan_image_pyramid
</item>
<item>
test_box_overlap
</item>
<item>
test_box_overlap
</item>
<item
nolink=
"true"
>
<item
nolink=
"true"
>
...
@@ -156,6 +158,7 @@
...
@@ -156,6 +158,7 @@
<item>
separable_3x3_filter_block_grayscale
</item>
<item>
separable_3x3_filter_block_grayscale
</item>
<item>
separable_3x3_filter_block_rgb
</item>
<item>
separable_3x3_filter_block_rgb
</item>
<item>
sum_filter
</item>
<item>
sum_filter
</item>
<item>
sum_filter_assign
</item>
<item>
max_filter
</item>
<item>
max_filter
</item>
<item>
spatially_filter_image_separable_down
</item>
<item>
spatially_filter_image_separable_down
</item>
</section>
</section>
...
@@ -1131,6 +1134,19 @@
...
@@ -1131,6 +1134,19 @@
<name>
sum_filter
</name>
<name>
sum_filter
</name>
<file>
dlib/image_transforms.h
</file>
<file>
dlib/image_transforms.h
</file>
<spec_file
link=
"true"
>
dlib/image_transforms/spatial_filtering_abstract.h
</spec_file>
<spec_file
link=
"true"
>
dlib/image_transforms/spatial_filtering_abstract.h
</spec_file>
<description>
This function slides a rectangle over an input image and adds the sum
of pixel values in each rectangle location to another image.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>
sum_filter_assign
</name>
<file>
dlib/image_transforms.h
</file>
<spec_file
link=
"true"
>
dlib/image_transforms/spatial_filtering_abstract.h
</spec_file>
<description>
<description>
This function slides a rectangle over an input image and outputs a new
This function slides a rectangle over an input image and outputs a new
image which contains the sum of pixels inside the rectangle at each
image which contains the sum of pixels inside the rectangle at each
...
@@ -1510,6 +1526,38 @@
...
@@ -1510,6 +1526,38 @@
</component>
</component>
<!-- ************************************************************************* -->
<component>
<name>
scan_image_movable_parts
</name>
<file>
dlib/image_processing.h
</file>
<spec_file
link=
"true"
>
dlib/image_processing/scan_image_abstract.h
</spec_file>
<description>
This global function is a tool for sliding a set of rectangles
over an image space and finding the locations where the sum of pixels in
the rectangles exceeds a threshold. It is useful for implementing
certain kinds of sliding window classifiers. The behavior of this
routine is similar to
<a
href=
"#scan_image"
>
scan_image
</a>
except that
it can also handle movable parts in addition to rigidly placed parts
within the sliding window.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>
find_points_above_thresh
</name>
<file>
dlib/image_processing.h
</file>
<spec_file
link=
"true"
>
dlib/image_processing/scan_image_abstract.h
</spec_file>
<description>
This routine finds all points in an image with a pixel value above a
threshold. It also has the ability to produce an efficient random
subsample of such points if the number of them is very large.
</description>
</component>
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<component>
<component>
...
...
docs/docs/term_index.xml
View file @
8a0b380b
...
@@ -1094,6 +1094,7 @@
...
@@ -1094,6 +1094,7 @@
<term
file=
"imaging.html"
name=
"gaussian_blur"
/>
<term
file=
"imaging.html"
name=
"gaussian_blur"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image"
/>
<term
file=
"imaging.html"
name=
"sum_filter"
/>
<term
file=
"imaging.html"
name=
"sum_filter"
/>
<term
file=
"imaging.html"
name=
"sum_filter_assign"
/>
<term
file=
"imaging.html"
name=
"max_filter"
/>
<term
file=
"imaging.html"
name=
"max_filter"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image_separable"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image_separable"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image_separable_down"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image_separable_down"
/>
...
@@ -1141,6 +1142,10 @@
...
@@ -1141,6 +1142,10 @@
<term
file=
"imaging.html"
name=
"test_box_overlap"
/>
<term
file=
"imaging.html"
name=
"test_box_overlap"
/>
<term
file=
"imaging.html"
name=
"object_detector"
/>
<term
file=
"imaging.html"
name=
"object_detector"
/>
<term
file=
"imaging.html"
name=
"scan_image_movable_parts"
/>
<term
file=
"imaging.html"
name=
"find_points_above_thresh"
/>
<term
file=
"imaging.html"
name=
"scan_image"
/>
<term
file=
"imaging.html"
name=
"scan_image"
/>
<term
file=
"imaging.html"
name=
"scan_image_pyramid"
/>
<term
file=
"imaging.html"
name=
"scan_image_pyramid"
/>
<term
file=
"imaging.html"
name=
"compute_box_dimensions"
/>
<term
file=
"imaging.html"
name=
"compute_box_dimensions"
/>
...
@@ -1153,6 +1158,7 @@
...
@@ -1153,6 +1158,7 @@
<term
file=
"imaging.html"
name=
"setup_hashed_features"
/>
<term
file=
"imaging.html"
name=
"setup_hashed_features"
/>
<term
file=
"dlib/image_processing/scan_image_abstract.h.html"
name=
"all_images_same_size"
/>
<term
file=
"dlib/image_processing/scan_image_abstract.h.html"
name=
"all_images_same_size"
/>
<term
file=
"dlib/image_processing/scan_image_abstract.h.html"
name=
"sum_of_rects_in_images"
/>
<term
file=
"dlib/image_processing/scan_image_abstract.h.html"
name=
"sum_of_rects_in_images"
/>
<term
file=
"dlib/image_processing/scan_image_abstract.h.html"
name=
"sum_of_rects_in_images_movable_parts"
/>
<term
file=
"dlib/image_processing/box_overlap_testing_abstract.h.html"
name=
"find_tight_overlap_tester"
/>
<term
file=
"dlib/image_processing/box_overlap_testing_abstract.h.html"
name=
"find_tight_overlap_tester"
/>
<term
file=
"dlib/image_processing/scan_image_pyramid_tools_abstract.h.html"
name=
"image_hash_construction_failure"
/>
<term
file=
"dlib/image_processing/scan_image_pyramid_tools_abstract.h.html"
name=
"image_hash_construction_failure"
/>
...
...
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