From 6ec417d89fd0081aed3dbefe2c3cbb21695b3c61 Mon Sep 17 00:00:00 2001 From: Micaela Verucchi Date: Wed, 8 Apr 2020 14:24:34 +0200 Subject: [PATCH] Add scripts folder Signed-off-by: Micaela Verucchi --- README.md | 4 ++-- download_validation.sh => scripts/download_validation.sh | 0 install_OpenCV4.sh => scripts/install_OpenCV4.sh | 0 test_all_tests.sh => scripts/test_all_tests.sh | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename download_validation.sh => scripts/download_validation.sh (100%) rename install_OpenCV4.sh => scripts/install_OpenCV4.sh (100%) rename test_all_tests.sh => scripts/test_all_tests.sh (100%) diff --git a/README.md b/README.md index 32f4f45..1d51dd2 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ This branch works on every NVIDIA GPU that supports the dependencies: ## About OpenCV To compile and install OpenCV4 with contrib us the script ```install_OpenCV4.sh```. It will download and compile OpenCV in Download folder. ``` -bash install_OpenCV4.sh +bash scripts/install_OpenCV4.sh ``` When using openCV not compiled with contrib, comment the definition of OPENCV_CUDACONTRIBCONTRIB in include/tkDNN/DetectionNN.h. When commented, the preprocessing of the networks is computed on the CPU, otherwise on the GPU. In the latter case some milliseconds are saved in the end-to-end latency. @@ -163,7 +163,7 @@ To compute mAP, precision, recall and f1score, run the map_demo. A validation set is needed. To download COCO_val2017 run (form the root folder): ``` -bash download_validation.sh +bash scripts/download_validation.sh ``` To compute the map, the following parameters are needed: ``` diff --git a/download_validation.sh b/scripts/download_validation.sh similarity index 100% rename from download_validation.sh rename to scripts/download_validation.sh diff --git a/install_OpenCV4.sh b/scripts/install_OpenCV4.sh similarity index 100% rename from install_OpenCV4.sh rename to scripts/install_OpenCV4.sh diff --git a/test_all_tests.sh b/scripts/test_all_tests.sh similarity index 100% rename from test_all_tests.sh rename to scripts/test_all_tests.sh