|
DW_API_PUBLIC dwStatus | dwImage_copyConvert (dwImageHandle_t const output, dwConstImageHandle_t const input, dwContextHandle_t const context) |
| Converts CUDA or NvMedia images by copying into an output image, following the properties in the output image. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_copyConvertAsync (dwImageHandle_t const output, dwConstImageHandle_t const input, cudaStream_t const stream, dwContextHandle_t const context) |
| Converts CUDA or NvMedia images by copying into an output image, following the properties in the output image. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_create (dwImageHandle_t *const image, dwImageProperties properties, dwContextHandle_t const ctx) |
| Creates and allocates resources for a dwImageHandle_t based on the properties passed as input. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_createAndBindBuffer (dwImageHandle_t *const image, dwImageProperties properties, void *const buffersIn[DW_MAX_IMAGE_PLANES], size_t const pitches[DW_MAX_IMAGE_PLANES], size_t const bufferCount, dwContextHandle_t const ctx) |
| Creates a dwImageHandle_t based on the properties passed and binds a memory buffer provided by the application. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_createAndBindCUDAArray (dwImageHandle_t *const image, dwImageProperties properties, cudaArray_t const buffers[DW_MAX_IMAGE_PLANES], size_t const bufferCount, dwContextHandle_t const ctx) |
| Creates a dwImageHandle_t based on the properties passed and binds a cudaArray_t to it. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_createAndBindNvSciBuf (dwImageHandle_t *const image, dwImageProperties const *properties, NvSciBufObj nvscibufObj, dwContextHandle_t const ctx) |
| Creates a dwImageHandle_t based on the properties passed and binds a memory buffer provided by the application. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_destroy (dwImageHandle_t const image) |
| Destroys the image handle and frees any memory created by dwImage_create(). More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getCPU (dwImageCPU **const imageCPU, dwImageHandle_t const image) |
| Retrieves the dwImageCPU of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getCUDA (dwImageCUDA **const imageCUDA, dwImageHandle_t const image) |
| Retrieves the dwImageCUDA of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getDataLayout (size_t *const elementSize, size_t *const planeCount, uint32_t planeChannelCount[DW_MAX_IMAGE_PLANES], dwVector2ui planeSize[DW_MAX_IMAGE_PLANES], dwImageProperties const *const prop) |
| Returns the expected data layout of an image given its properties. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getMetaData (dwImageMetaData *const metaData, dwConstImageHandle_t const image) |
| Retrieves the metadata of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getNvMedia (dwImageNvMedia **imageNvMedia, dwImageHandle_t image) |
| Retrieves the dwImageNvMedia of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getNvSciBuf (NvSciBufObj *nvSciBufObj, dwImageHandle_t image) |
| Retrieve the NvSciBufObj backing the image allocation. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getPixelType (dwTrivialDataType *const type, dwImageFormat const format) |
| Retrieves dwTrivialDataType associated with a specific format. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getPlaneCount (size_t *const planeCount, dwImageFormat const format) |
| Retrieves number of planes of the image format. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getProperties (dwImageProperties *const properties, dwConstImageHandle_t const image) |
| Retrieves the properties of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_getTimestamp (dwTime_t *const timestamp, dwConstImageHandle_t const image) |
| Retrieves the timestamp of acquisition of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_setMetaData (dwImageMetaData const *const metaData, dwImageHandle_t const image) |
| Sets the metadata of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImage_setTimestamp (dwTime_t const timestamp, dwImageHandle_t const image) |
| Sets the timestamp of a dwImageHandle_t. More...
|
|
DW_API_PUBLIC dwStatus | dwImageCUDA_getPlaneAsImage (dwImageCUDA *const planeImage, dwImageCUDA const *const srcImage, uint32_t const planeIdx) |
| Returns a specific plane of a CUDA image as its own single-plane CUDA image. More...
|
|
DW_API_PUBLIC dwStatus | dwImageCUDA_mapToROI (dwImageCUDA *const dstImg, dwImageCUDA const *const srcImg, dwRect const roi) |
| Returns a dwImageCUDA that is mapped to a region of interest in the data of the srcImg. More...
|
|