This file contains hidden or 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
| sudo apt-get install qt5-default | |
| sudo apt-get install opencl-headers | |
| sudo pip install pylint | |
| # Install minimal prerequisites (Ubuntu 18.04 as reference) | |
| sudo apt update && sudo apt install -y cmake g++ wget unzip | |
| # Download and unpack sources | |
| wget -O opencv.zip https://github.com/opencv/opencv/archive/master.zip | |
| wget -O opencv_contrib.zip https://github.com/opencv/opencv_contrib/archive/master.zip | |
| unzip opencv.zip | |
| unzip opencv_contrib.zip |
This file contains hidden or 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
| mkdir coco | |
| cd coco | |
| mkdir images | |
| cd images | |
| wget -c http://images.cocodataset.org/zips/train2017.zip | |
| wget -c http://images.cocodataset.org/zips/val2017.zip | |
| wget -c http://images.cocodataset.org/zips/test2017.zip | |
| wget -c http://images.cocodataset.org/zips/unlabeled2017.zip |
This file contains hidden or 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
| git clone https://git.videolan.org/git/ffmpeg/nv-codec-headers.git | |
| cd nv-codec-headers && make && sudo make install | |
| git clone https://github.com/FFmpeg/FFmpeg.git | |
| cd FFmpeg | |
| # Manually modify nvccflags_default | |
| ./configure --enable-nonfree \ | |
| --enable-cuda-nvcc \ | |
| --enable-libnpp \ | |
| --enable-pic \ |
This file contains hidden or 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
| # Nvidia Driver installation | |
| # sudo apt install nvidia-driver-460 | |
| # sudo reboot | |
| # CUDA installation | |
| # Version==11.0.3 | |
| # If you want to compile OpenCV with CUDA support, | |
| # please install CUDA11.0.1 by net (method2) and then install CUDA11.0.3 by runfile again and dont override driver. | |
| # Because I find net installtion is different from runfile such as nppi. |
This file contains hidden or 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
| 102367434# 62424314 | |
| 195174792# 52300345 | |
| 214769520# 55566133 | |
| 233322180# 175319345 | |
| 245326014# 60658881 | |
| 252694470# 125060579 | |
| 255360600# 62331313 | |
| 256660341# 190878113 | |
| 264324060# 63825223 | |
| 268186164# 198562001 |
This file contains hidden or 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
| git config --global http.proxy 'socks5://192.168.18.17:1082' | |
| git config --global https.proxy 'socks5://192.168.18.17:1082' | |
| git config --global --unset http.proxy | |
| git config --global --unset https.proxy | |
| npm config delete proxy |
NewerOlder