-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# install cuDNN v6.0 | ||
CUDNN_TAR_FILE="cudnn-8.0-linux-x64-v6.0.tgz" | ||
wget http://developer.download.nvidia.com/compute/redist/cudnn/v6.0/${CUDNN_TAR_FILE} | ||
tar -xzvf ${CUDNN_TAR_FILE} | ||
sudo cp -P cuda/include/cudnn.h /usr/local/cuda-8.0/include | ||
sudo cp -P cuda/lib64/libcudnn* /usr/local/cuda-8.0/lib64/ | ||
sudo chmod a+r /usr/local/cuda-8.0/lib64/libcudnn* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
sudo apt-get -y update | ||
sudo apt-get -y upgrade | ||
sudo apt-get -y dist-upgrade | ||
sudo apt-get -y autoremove | ||
|
||
|
||
# INSTALL THE DEPENDENCIES | ||
|
||
# Build tools: | ||
sudo apt-get install -y build-essential cmake | ||
|
||
# GUI (if you want to use GTK instead of Qt, replace 'qt5-default' with 'libgtkglext1-dev' and remove '-DWITH_QT=ON' option in CMake): | ||
sudo apt-get install -y qt5-default libvtk6-dev | ||
|
||
# Media I/O: | ||
sudo apt-get install -y zlib1g-dev libjpeg-dev libwebp-dev libpng-dev libtiff5-dev libjasper-dev libopenexr-dev libgdal-dev | ||
|
||
# Video I/O: | ||
sudo apt-get install -y libdc1394-22-dev libavcodec-dev libavformat-dev libswscale-dev libtheora-dev libvorbis-dev libxvidcore-dev libx264-dev yasm libopencore-amrnb-dev libopencore-amrwb-dev libv4l-dev libxine2-dev | ||
|
||
# Parallelism and linear algebra libraries: | ||
sudo apt-get install -y libtbb-dev libeigen3-dev | ||
|
||
# http://answers.opencv.org/question/121651/fata-error-lapacke_h_path-notfound-when-building-opencv-32/ | ||
sudo apt-get install liblapacke-dev checkinstall | ||
|
||
# Python: | ||
sudo apt-get install -y python-dev python-tk python-numpy python3-dev python3-tk python3-numpy | ||
|
||
# Java: | ||
sudo apt-get install -y ant default-jdk | ||
|
||
# Documentation: | ||
sudo apt-get install -y doxygen | ||
|
||
|
||
# INSTALL THE LIBRARY (YOU CAN CHANGE '3.1.0' FOR THE LAST STABLE VERSION) | ||
|
||
sudo apt-get install -y unzip wget | ||
wget https://github.com/opencv/opencv/archive/3.2.0.zip | ||
unzip 3.2.0.zip | ||
rm 3.2.0.zip | ||
mv opencv-3.2.0 OpenCV | ||
cd OpenCV | ||
mkdir build | ||
cd build | ||
# http://answers.opencv.org/question/121651/fata-error-lapacke_h_path-notfound-when-building-opencv-32/ | ||
#cmake -DWITH_QT=ON -DWITH_OPENGL=ON -DFORCE_VTK=ON -DWITH_TBB=ON -DWITH_GDAL=ON -DWITH_XINE=ON -DBUILD_EXAMPLES=ON .. | ||
cmake -DWIDN_CUDNN=OFF -DWITH_QT=OFF -DWITH_OPENGL=OFF -DFORCE_VTK=ON -DWITH_TBB=ON -DWITH_GDAL=ON -DWITH_XINE=ON -DBUILD_EXAMPLES=ON .. | ||
make -j4 | ||
sudo make install | ||
sudo ldconfig | ||
|
||
|
||
# EXECUTE SOME OPENCV EXAMPLES AND COMPILE A DEMONSTRATION | ||
|
||
# To complete this step, please visit 'http://milq.github.io/install-opencv-ubuntu-debian'. |