Difference between revisions of "CUDA ISP for NVIDIA Jetson/Getting Started/Evaluating the CUDA ISP"

From RidgeRun Developer Connection
Jump to: navigation, search
(Installing BIPS)
Line 30: Line 30:
  
 
</pre>
 
</pre>
 
{{notice|<code>python3.8</code> may vary on the Python version you request.}}
 
  
 
After decompressing the files, please, copy the contents to the target machine:
 
After decompressing the files, please, copy the contents to the target machine:
Line 39: Line 37:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
If you don't want to install BIPS on your system, you can alternatively set the environment
 
 
<syntaxhighlight lang=bash>
 
export LD_LIBRARY_PATH=`pwd`/usr/local/lib/$(uname -m)-linux-gnu:${LD_LIBRARY_PATH}
 
export PYTHONPATH=`pwd`/usr/local/lib/python3.8/site-packages:${PYTHONPATH}
 
</syntaxhighlight>
 
 
{{notice|<code>python3.8</code> may vary on the Python version you request.}}
 
  
  

Revision as of 20:30, 27 March 2023


  Index  





Installing BIPS

RidgeRun will provide you with a tarball with the following contents:


└── usr
    └── local
        ├── include
        │   └── libcudaisp
        │       ├── buffer.hpp
        │       ├── colorspaceparams.hpp
        │       ├── debayerparams.hpp
        │       ├── ialgorithm.hpp
        │       ├── ibackend.hpp
        │       ├── ilogger.hpp
        │       ├── iparams.hpp
        │       ├── isettings.hpp
        │       ├── isp.hpp
        │       └── shiftparams.hpp
        ├── lib
            └── aarch64-linux-gnu
                ├── gstreamer-1.0
                │   └── libgstcudaisp.so
                └── libcudaisp.so

After decompressing the files, please, copy the contents to the target machine:

sudo cp -r usr/local/* /usr/local/














  Index