Last active
April 9, 2019 04:17
-
-
Save msurguy/7f3b029f93042ebe2a2c5a8446cdb379 to your computer and use it in GitHub Desktop.
Jetson Nano OpenCV 4.0.0 install script
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
#!/bin/bash | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 <Install Folder>" | |
exit | |
fi | |
folder="$1" | |
user="nvidia" | |
passwd="nvidia" | |
echo "** Install requirements" | |
sudo apt-get update | |
sudo apt-get install -y build-essential cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev | |
sudo apt-get install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev | |
sudo apt-get install -y python2.7-dev python3.6-dev python-dev python-numpy python3-numpy | |
sudo apt-get install -y libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libjasper-dev libdc1394-22-dev | |
sudo apt-get install -y libv4l-dev v4l-utils qv4l2 v4l2ucp | |
sudo apt-get install -y curl | |
sudo apt-get update | |
echo "** Download opencv-4.0.0" | |
cd $folder | |
curl -L https://github.com/opencv/opencv/archive/4.0.0.zip -o opencv-4.0.0.zip | |
curl -L https://github.com/opencv/opencv_contrib/archive/4.0.0.zip -o opencv_contrib-4.0.0.zip | |
unzip opencv-4.0.0.zip | |
unzip opencv_contrib-4.0.0.zip | |
cd opencv-4.0.0/ | |
echo "** Building..." | |
mkdir release | |
cd release/ | |
cmake -D WITH_CUDA=ON -D CUDA_ARCH_BIN="5.3" -D CUDA_ARCH_PTX="" -D OPENCV_EXTRA_MODULES_PATH=../../opencv_contrib-4.0.0/modules -D WITH_GSTREAMER=ON -D WITH_LIBV4L=ON -D BUILD_opencv_python2=ON -D BUILD_opencv_python3=ON -D BUILD_TESTS=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_EXAMPLES=OFF -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local .. | |
make -j4 | |
sudo make install | |
sudo apt-get install -y python-opencv python3-opencv | |
echo "** Install opencv-4.0.0 successfully" | |
echo "** Bye :)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment