I want to create a classifier with a batch size of 5.
I created a tensorRT file with the option of batch size 5.
My goal is to classify each box detected by DriveNet using this classifier.
In order to perform inferencing I have the following API:
dwDataConditioner_prepareData | ( | float32_t * | d_outputImage , |
---|---|---|---|
const dwImageCUDA *const * | inputImages , | ||
uint32_t | numImages , | ||
const dwRect * | roi , | ||
cudaTextureAddressMode | addressMode , | ||
dwDataConditionerHandle_t | obj | ||
) |
I plan to pass an array for the inputImages argument just as the DriveNet ncameras example.
My question is that is it possible to give an ROI array in case of the roi argument?
Note: The roi.x and roi.y values are also varing.