Part Number: TDA4VM
we use sdk7.01, vision app, connect a sensor (YUV422 8bit) bia serdes (max9286/max96705), we get image display on screen with app_single_camera example. but the image is not normal.

what could be the cause of this issue?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TDA4VM
we use sdk7.01, vision app, connect a sensor (YUV422 8bit) bia serdes (max9286/max96705), we get image display on screen with app_single_camera example. but the image is not normal.

what could be the cause of this issue?
Can you please save one frame and send us?
use the command ‘s’ in app_single_cam runtime menu to save the frame
Thanks, the captured image is correct but it is in YVUV format. By default the display is configured for UYVY, therefore luma and chroma are swapped. You need to change display settings.
How to change? do I need to insert a color convert node? or just change settings.
What's the data format used in sensor driver? You would have specified something like VX_DF_IMAGE_UYVY in IssSensor_CreateParams. Please try changing that.
Yes, we set camera format to VX_DF_IMAGE_UYVY , and also tried VX_DF_IMAGE_YVYU, but neither of them works. Seems the display doesn't support. we will try to add a color convert node. Thank you.