diff --git a/YOLOv5.md b/YOLOv5.md index 78c305e..dcb8dad 100644 --- a/YOLOv5.md +++ b/YOLOv5.md @@ -159,9 +159,14 @@ Edit yolov5.cpp file before compile if you want to change this parameters. ## ### Compile nvdsinfer_custom_impl_Yolo -1. Donwload [my external/yolov5 folder](https://github.com/marcoslucianops/DeepStream-Yolo/tree/master/external/yolov5) and move files to created yolo folder +1. Run command +``` +sudo chmod -R 777 /opt/nvidia/deepstream/deepstream-5.0/sources/ +``` -2. Compile lib +2. Donwload [my external/yolov5 folder](https://github.com/marcoslucianops/DeepStream-Yolo/tree/master/external/yolov5) and move files to created yolo folder + +3. Compile lib ``` cd /opt/nvidia/deepstream/deepstream-5.0/sources/yolo CUDA_VER=10.2 make -C nvdsinfer_custom_impl_Yolo @@ -198,4 +203,4 @@ To change NMS_THRESH and THRESH_CONF, edit nvdsinfer_custom_impl_Yolo/nvdsparseb ``` #define NMS_THRESH 0.45 #define CONF_THRESH 0.25 -``` \ No newline at end of file +```