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

From RidgeRun Developer Connection
Jump to: navigation, search
(Requesting the Evaluation Binary)
(Installing CUDAISP)
Line 10: Line 10:
 
{{CUDA ISP for NVIDIA Jetson/Head|previous=|next=|metakeywords=|metadescription=}}
 
{{CUDA ISP for NVIDIA Jetson/Head|previous=|next=|metakeywords=|metadescription=}}
 
</noinclude>
 
</noinclude>
 +
 +
= Requesting the Evaluation Binary ==
 +
 +
To request an evaluation binary for a specific architecture, don't hesitate to get in touch with us providing the following information:
 +
 +
* Platform (i.e.: TX1, TX2, x86)
 +
* Operating System version, including:
 +
** Kernel version. Use <code>uname -a</code>
 +
** Distribution version.
 +
* If you are on Jetson:
 +
** Jetpack version
 +
** L4T version
 +
* CUDA and NPP library version
 +
 +
 +
RidgeRun will provide you with the binaries to evaluate BIPS with some limitations
 +
 +
<center>
 +
[[File:RR Contact Us.png|200px|link=http://www.ridgerun.com/contact]]
 +
</center>
 +
  
 
=== Installing CUDAISP ===
 
=== Installing CUDAISP ===

Revision as of 20:41, 27 March 2023






  Index  


Warning: Display title "CUDA ISP for NVIDIA Jetson: Getting Started&#x20;-&#x20;Evaluating the CUDA ISP" overrides earlier display title "CUDA ISP for NVIDIA Jetson: Evaluating the CUDA ISP".




Requesting the Evaluation Binary =

To request an evaluation binary for a specific architecture, don't hesitate to get in touch with us providing the following information:

  • Platform (i.e.: TX1, TX2, x86)
  • Operating System version, including:
    • Kernel version. Use uname -a
    • Distribution version.
  • If you are on Jetson:
    • Jetpack version
    • L4T version
  • CUDA and NPP library version


RidgeRun will provide you with the binaries to evaluate BIPS with some limitations

RR Contact Us.png


Installing CUDAISP

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