Part Number: TDA4VH-Q1
Other Parts Discussed in Thread: TDA4VH
Tool/software:
TDA4VH custom board
SDK 11.00
freertos+linux

The four-way surround view data we obtained from the cameras needs to undergo the processing shown in the above figure.
Currently, we are attempting to optimize the performance of the "stitch" node.
After our investigation, we found that VXLIB_remapBilinear_bc_i8u_i32f_o8u will consume 32ms. The input size is 1920*1536*4, and the output size is 512*512.
1.We would like to know if VXLIB_remapBilinear_bc_i8u_i32f_o8u has reached its limit for our specific case? Is there still room for improvement?
2.Or is there a more efficient function available to replace VXLIB_remapBilinear_bc_i8u_i32f_o8u?
3.At the same time, we are also attempting to remove the LDC_CC node. Therefore, we would like to know if the remap function in the VXLIB library supports converting UYVY to NV12 while performing the remap operation, because the input of the preproc node must be NV12.
