mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Removed references to boost.python since it's no longer needed.
This commit is contained in:
parent
989e72e05a
commit
c1b1ac955a
@ -54,33 +54,6 @@ cmake --build . --config Release
|
|||||||
|
|
||||||
<!-- ****************************************** -->
|
<!-- ****************************************** -->
|
||||||
|
|
||||||
<question text="Why won't the Python bindings compile/work?">
|
|
||||||
To compile dlib's Python bindings you need a correctly installed copy of Boost.Python.
|
|
||||||
If you are getting errors either during compile time or when you try to import dlib
|
|
||||||
then it is <b>very likely</b> that you have installed Boost.Python incorrectly.
|
|
||||||
<p>
|
|
||||||
<b>It is critical that the copy of Boost.Python you are using is compiled against the specific
|
|
||||||
version of the Python interpreter you are trying to use.</b> If this is not the case then it won't work.
|
|
||||||
Here are some reasons why you might not have a correct install of Boost.Python
|
|
||||||
<ul>
|
|
||||||
<li>You downloaded Boost.Python binaries from the internet and
|
|
||||||
they aren't build for whatever Python you are using. The fix
|
|
||||||
for this is to either find the correct Boost.Python binaries
|
|
||||||
or build Boost.Python yourself.</li>
|
|
||||||
<li>You have more than one copy of Python installed on your computer. The build scripts will try to use
|
|
||||||
whatever python is in your path when you build. So you need to be consistent about what python interpreter you are using.
|
|
||||||
Everything, both dlib and boost, need to be compiled against the specific Python interpreter you want to use. The simplest thing to do is to
|
|
||||||
delete other Python interpreters from your machine so there is no confusion.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
Other problems users have reported are compiler errors related to X11. This is pretty much always
|
|
||||||
caused by Anaconda, which includes broken X11 headers in its distribution. Delete Anaconda if you have
|
|
||||||
this problem.
|
|
||||||
</p>
|
|
||||||
</question>
|
|
||||||
|
|
||||||
<!-- ****************************************** -->
|
|
||||||
|
|
||||||
<question text="Why is dlib slow?">
|
<question text="Why is dlib slow?">
|
||||||
Dlib isn't slow. I get this question many times a week and 95% of the time it's from someone
|
Dlib isn't slow. I get this question many times a week and 95% of the time it's from someone
|
||||||
using Visual Studio who has compiled their program in Debug mode rather than the optimized
|
using Visual Studio who has compiled their program in Debug mode rather than the optimized
|
||||||
|
@ -29,9 +29,9 @@
|
|||||||
# and you have CUDA installed since this makes things run *much* faster.
|
# and you have CUDA installed since this makes things run *much* faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
@ -82,4 +82,4 @@ for f in sys.argv[2:]:
|
|||||||
win.clear_overlay()
|
win.clear_overlay()
|
||||||
win.set_image(img)
|
win.set_image(img)
|
||||||
win.add_overlay(rects)
|
win.add_overlay(rects)
|
||||||
dlib.hit_enter_to_continue()
|
dlib.hit_enter_to_continue()
|
||||||
|
@ -28,9 +28,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -17,9 +17,9 @@
|
|||||||
# installed.
|
# installed.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires OpenCV and Numpy which can be installed
|
# Also note that this example requires OpenCV and Numpy which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -24,9 +24,9 @@
|
|||||||
# installed.
|
# installed.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -33,9 +33,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
# installed.
|
# installed.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires OpenCV and Numpy which can be installed
|
# Also note that this example requires OpenCV and Numpy which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -41,9 +41,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -36,9 +36,9 @@
|
|||||||
# installed.
|
# installed.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -27,9 +27,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
# python setup.py install
|
# python setup.py install
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
|
|
||||||
import dlib
|
import dlib
|
||||||
|
@ -18,9 +18,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
|
|
||||||
import dlib
|
import dlib
|
||||||
|
@ -23,9 +23,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
import sys
|
import sys
|
||||||
import dlib
|
import dlib
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
|
|
||||||
import dlib
|
import dlib
|
||||||
|
@ -27,9 +27,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
|
|
||||||
import dlib
|
import dlib
|
||||||
|
@ -27,9 +27,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
|
|
||||||
import dlib
|
import dlib
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
@ -29,9 +29,9 @@
|
|||||||
# things run faster.
|
# things run faster.
|
||||||
#
|
#
|
||||||
# Compiling dlib should work on any operating system so long as you have
|
# Compiling dlib should work on any operating system so long as you have
|
||||||
# CMake and boost-python installed. On Ubuntu, this can be done easily by
|
# CMake installed. On Ubuntu, this can be done easily by running the
|
||||||
# running the command:
|
# command:
|
||||||
# sudo apt-get install libboost-python-dev cmake
|
# sudo apt-get install cmake
|
||||||
#
|
#
|
||||||
# Also note that this example requires scikit-image which can be installed
|
# Also note that this example requires scikit-image which can be installed
|
||||||
# via the command:
|
# via the command:
|
||||||
|
Loading…
Reference in New Issue
Block a user