Part Number: TDA4VM
Received the following query from one of my customers:
The Images they pass to the kernel are internally processed as Image Descriptors in the kernel. They have a scenario where the function tivxKernelODDrawDetectionsProcess in vx_od_draw_detections_target.c receives the input image as follows:
tivxDrawBoxDetectionsNode(graph,
drawDetectionsObj->config,
input_tensor,
input_image,
output_image);
The input image is then used in tivxKernelODDrawDetectionsProcess as an image descriptor.They want to crop the image using the bounding box information they have in tivxKernelODDrawDetectionsProcess.For that they have to know how to deal with image descriptors. They want to pass the cropped image to a classification network after that. They would like to know how to crop an image descriptor and pass the information to the next stage.
Thanks,
John