Skip to content
Snippets Groups Projects
Commit 7cf619c4 authored by Daalen, Tim van's avatar Daalen, Tim van
Browse files

instruction how to create shortcuts

parent ec04b647
Branches
No related tags found
No related merge requests found
......@@ -91,4 +91,33 @@ If there's still an error, like **unable to execute 'swig': No such file or dire
- swig -python -c++ -modern -builtin -o nv_onnx_parser_bindings_wrap.cpp nv_onnx_parser_bindings.i (*should execute without any feedbacks and errors*)
- sudo python3 setup_2.py install <br/> <br/>
**11) OPTIONAL: Make desktop shortcuts:**
- follow the instructions in this URL: https://gist.github.com/nathakits/7efb09812902b533999bda6793c5e872
- chmod u+x /home/adlink/inference/inference.py
- Right click on the desktop-file and select Properties. In the Permissions tab, set the execute to allow executing file as program
[Desktop Entry]<br/>
Name=detection<br/>
Version=1<br/>
Icon=/home/adlink/inference/data/optima.jpg<br/>
Exec=python3 /home/adlink/inference/inference.py --cfg /home/adlink/inference/cfg/detection.yaml<br/>
Terminal=true<br/>
Type=Application<br/>
[Desktop Entry]<br/>
Name=classification<br/>
Version=1<br/>
Icon=/home/adlink/inference/data/optima.jpg<br/>
Exec=python3 /home/adlink/inference/inference.py --cfg /home/adlink/inference/cfg/classification.yaml<br/>
Terminal=true<br/>
Type=Application<br/>
[Desktop Entry]<br/>
Name=classification_patches<br/>
Version=1<br/>
Icon=/home/adlink/inference/data/optima.jpg<br/>
Exec=python3 /home/adlink/inference/inference.py --cfg /home/adlink/inference/cfg/classification_patches.yaml<br/>
Terminal=true<br/>
Type=Application<br/>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment