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
275410af
Commit
275410af
authored
May 28, 2011
by
Davis King
Browse files
updated docs
parent
dc1cafe8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
3 deletions
+88
-3
docs/docs/imaging.xml
docs/docs/imaging.xml
+84
-3
docs/docs/term_index.xml
docs/docs/term_index.xml
+4
-0
No files found.
docs/docs/imaging.xml
View file @
275410af
...
...
@@ -27,7 +27,6 @@
<name>
Pixels
</name>
<item>
rgb_pixel
</item>
<item>
bgr_pixel
</item>
<item>
cv_image
</item>
<item>
rgb_alpha_pixel
</item>
<item>
hsi_pixel
</item>
<item>
pixel_traits
</item>
...
...
@@ -38,12 +37,16 @@
<section>
<name>
Image I/O
</name>
<item>
png_loader
</item>
<item>
jpeg_loader
</item>
<item>
load_bmp
</item>
<item>
save_bmp
</item>
<item>
load_dng
</item>
<item>
load_image
</item>
<item>
load_jpeg
</item>
<item>
load_png
</item>
<item>
png_loader
</item>
<item>
save_bmp
</item>
<item>
save_dng
</item>
<item>
save_png
</item>
</section>
<section>
...
...
@@ -75,6 +78,8 @@
<section>
<name>
Miscellaneous
</name>
<item>
cv_image
</item>
<item>
draw_line
</item>
<item>
assign_image
</item>
<item>
assign_image_scaled
</item>
...
...
@@ -464,6 +469,25 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>
load_jpeg
</name>
<file>
dlib/image_io.h
</file>
<spec_file
link=
"true"
>
dlib/image_loader/jpeg_loader_abstract.h
</spec_file>
<description>
This function loads a JPEG image file into
an
<a
href=
"containers.html#array2d"
>
array2d
</a>
of
<a
href=
"dlib/pixel.h.html"
>
pixels
</a>
.
<p>
Note that you must define DLIB_JPEG_SUPPORT if you want to use this object. You
must also set your build environment to link to the libjpeg library. However,
if you use CMake and dlib's default CMakeLists.txt file then it will get setup
automatically.
</p>
</description>
</component>
<!-- ************************************************************************* -->
<component>
...
...
@@ -490,6 +514,44 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>
save_png
</name>
<file>
dlib/image_io.h
</file>
<spec_file
link=
"true"
>
dlib/image_saver/save_png_abstract.h
</spec_file>
<description>
This global function writes an image to disk as a PNG (Portable Network Graphics) file.
<p>
Note that you must define DLIB_PNG_SUPPORT if you want to use this function. You
must also set your build environment to link to the libpng library. However,
if you use CMake and dlib's default CMakeLists.txt file then it will get setup
automatically.
</p>
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>
load_image
</name>
<file>
dlib/image_io.h
</file>
<spec_file
link=
"true"
>
dlib/image_loader/load_image_abstract.h
</spec_file>
<description>
This global function takes a file name, looks at its extension, and
then loads it into an
<a
href=
"containers.html#array2d"
>
array2d
</a>
of
<a
href=
"dlib/pixel.h.html"
>
pixels
</a>
using the appropriate image
loading routine. The supported types are BMP, PNG, JPEG, and the dlib DNG file format.
<p>
Note that you can only load PNG and JPEG files if you link against
libpng and libjpeg respectively.
</p>
</description>
</component>
<!-- ************************************************************************* -->
<component>
...
...
@@ -507,6 +569,25 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>
load_png
</name>
<file>
dlib/image_io.h
</file>
<spec_file
link=
"true"
>
dlib/image_loader/png_loader_abstract.h
</spec_file>
<description>
This function loads a Portable Network Graphics (PNG) image file into
an
<a
href=
"containers.html#array2d"
>
array2d
</a>
of
<a
href=
"dlib/pixel.h.html"
>
pixels
</a>
.
<p>
Note that you must define DLIB_PNG_SUPPORT if you want to use this object. You
must also set your build environment to link to the libpng library. However,
if you use CMake and dlib's default CMakeLists.txt file then it will get setup
automatically.
</p>
</description>
</component>
<!-- ************************************************************************* -->
<component>
...
...
docs/docs/term_index.xml
View file @
275410af
...
...
@@ -927,6 +927,8 @@
<term
file=
"imaging.html"
name=
"get_histogram"
/>
<term
file=
"imaging.html"
name=
"hsi_pixel"
/>
<term
file=
"imaging.html"
name=
"load_bmp"
/>
<term
file=
"imaging.html"
name=
"load_png"
/>
<term
file=
"imaging.html"
name=
"load_jpeg"
/>
<term
file=
"imaging.html"
name=
"load_dng"
/>
<term
file=
"imaging.html"
name=
"pixel_traits"
/>
<term
file=
"imaging.html"
name=
"rgb_pixel"
/>
...
...
@@ -936,6 +938,8 @@
<term
file=
"imaging.html"
name=
"rgb_alpha_pixel"
/>
<term
link=
"imaging.html#rgb_alpha_pixel"
name=
"alpha"
/>
<term
file=
"imaging.html"
name=
"save_bmp"
/>
<term
file=
"imaging.html"
name=
"save_png"
/>
<term
file=
"imaging.html"
name=
"load_image"
/>
<term
file=
"imaging.html"
name=
"save_dng"
/>
<term
file=
"imaging.html"
name=
"spatially_filter_image"
/>
<term
file=
"imaging.html"
name=
"pyramid_down"
/>
...
...
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