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
64c986cf
Commit
64c986cf
authored
Dec 25, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added another FAQ entry.
parent
70068e46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
faq.xml
docs/docs/faq.xml
+29
-0
No files found.
docs/docs/faq.xml
View file @
64c986cf
...
...
@@ -61,8 +61,37 @@ row_vect.set_size(5);
<b><font
style=
'font-size:1.3em'
color=
'#0000FF'
>
Detailed Documentation
</font></b>
links.
</question>
<!-- ****************************************** -->
<question
text=
"How does dlib interface with other libraries/tools?"
>
There shouldn't ever be anything in dlib that prevents you from using or
interacting with other libraries. However, there are some additional tools
in dlib to make some interactions easier.
<ul>
<li><b>
BLAS and LAPACK libraries
</b>
are used by the
<a
href=
"linear_algebra.html#matrix"
>
matrix
</a>
automatically if you
<tt>
#define
</tt>
DLIB_USE_BLAS and/or DLIB_USE_LAPACK and link against
the appropriate library files. Note that the CMakeLists.txt file that comes with dlib will
do this for you automatically in many instances.
</li><br/>
<li><b>
Armadillo and Eigen libraries
</b>
have matrix objects which can be converted into
dlib matrix objects by calling dlib::mat() on them.
</li><br/>
<li><b>
OpenCV
</b>
image objects can be converted into a form usable by dlib routines
by using
<a
href=
"imaging.html#cv_image"
>
cv_image
</a>
. You can also convert from a
dlib matrix or image to an OpenCV Mat using dlib::
<a
href=
"imaging.html#toMat"
>
toMat
</a>
().
</li><br/>
<li><b>
Google Protocol Buffers
</b>
can be serialized by the dlib
<a
href=
"other.html#serialize"
>
serialization
</a>
routines.
This means that, for example, you can pass protocol buffer objects through a
<a
href=
"network.html#bridge"
>
bridge
</a>
.
</li>
</ul>
</question>
</questions>
<!-- ************************************************************************* -->
<questions
group=
"Machine Learning"
>
...
...
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