There is no commentSelect some text and then click Comment, or simply add a comment to this page from below to start a discussion.
Install AlexeyAB Darknet (and OpenCV)
tags: 2022/06DarknetAlexeyABOpenCV
(2022/6/17) After installation of CUDA and cuDNN, it is time to run AI applications. One of the most famous image recognition Yolo V4 requires Darknet for complilation.
$ git clone https://github.com/AlexeyAB/darknet
$ cd darknet
# Change the setting to enable GPU
$ sed -i "s/GPU=0/GPU=1/g" Makefile
$ sed -i "s/CUDNN_HALF=0/CUDNN_HALF=1/g" Makefile
$ sed -i "s/CUDNN=0/CUDNN=1/g" Makefile
$ sed -i "s/OPENCV=0/OPENCV=1/g" Makefile
$ make