Enum NVCVImageBufferType

Enum Documentation

enum NVCVImageBufferType

Represents how the image data is stored.

Values:

enumerator NVCV_IMAGE_BUFFER_NONE

Invalid buffer type. This is commonly used to inform that no buffer type was selected.

enumerator NVCV_IMAGE_BUFFER_STRIDED_CUDA

GPU-accessible with planes in pitch-linear layout.

enumerator NVCV_IMAGE_BUFFER_STRIDED_HOST

Host-accessible with planes in pitch-linear layout.

enumerator NVCV_IMAGE_BUFFER_CUDA_ARRAY

Buffer stored in a cudaArray_t. Please consult cudaArray_t for more information.