Difference between revisions of "GstCUDA - GstCUDA Framework"

From RidgeRun Developer Connection
Jump to: navigation, search
Line 20: Line 20:
 
   <div class="toc" style="font-size:80%;">
 
   <div class="toc" style="font-size:80%;">
 
     <ol>
 
     <ol>
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_cudafilter>cudafilter</a></li>
+
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_libGstCUDA_API>libGstCUDA API</a></li>
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_cudamux>cudamux</a></li>
+
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_GstCUDABaseFilter>GstCUDABaseFilter</a></li>
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_cudademux>cudademux</a></li>
+
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_GstCUDABaseMISO>GstCUDABaseMISO</a></li>
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_cudamimo>cudamimo</a></li>
+
       <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_GstCUDABaseSIMO>GstCUDABaseSIMO</a></li>
 +
      <li> <a href=https://developer.ridgerun.com/wiki/index.php?title=GstCUDA_-_GstCUDABaseMIMO>GstCUDABaseMIMO</a></li>
 
     </ol>
 
     </ol>
 
   </div>
 
   </div>

Revision as of 17:11, 4 October 2017


Building and Installation Guide


Home

libGstCUDA API



This page offers a description of the GstCUDA framework.

Description

GstCUDA offers a framework that allows users to easily develop custom GStreamer elements that executes any CUDA algorithm. The GstCUDA framework is a series of base classes abstracting the complexity of both CUDA and GStreamer. With GstCUDA, developers avoid writing elements from scratch, thanks to the provided framework, allowing the developer to focus on the CUDA algorithm logic, and accelerating time to market.


Those base classes are based on the libGstCUDA API. It consists in a library that expose special structures and functions that abstracts the complexity of handle NVMM memory type buffers, extracts the data buffer to be processed from a GstBuffer and pass it to the GPU, and recover back the processed data from the GPU to the GStreamer element. Also, the methods implemented in the libGstCUDA API ensures an optimal performance, due to direct handling of NVMM memory type buffers and zero memory copy interface between GStreamer and CUDA.


GstCUDA Framework Index

The following index gives a detailed description of the libGstCUDA API and each of the base classes provided in the GstCUDA framework.




Building and Installation Guide


Home

libGstCUDA API