Function nvcvImageBatchVarShapePushImages

Function Documentation

NVCVStatus nvcvImageBatchVarShapePushImages(NVCVImageBatchHandle handle, const NVCVImageHandle *images, int32_t numImages)

Push images to the end of the image batch.

Parameters:
  • handle[in] Image batch to be manipulated

  • images[in] Pointer to a buffer with the image handles to be added.

    • Must not be NULL.

    • Must point to an array of at least numImages image handles.

    • The images must not be destroyed while they’re being referenced by the image batch.

    • Image format must indicate a pitch-linear memory layout.

  • numImages[in] Number of images in the images array.

    • Must be >= 1.

    • Final number of images must not exceed the image batch capacity.

Return values:
  • NVCV_ERROR_INVALID_ARGUMENT – Some parameter is outside its valid range.

  • NVCV_ERROR_OVERFLOW – Image batch capacity exceeded.

  • NVCV_SUCCESS – Operation executed successfully.