Hi all,
I am working on the Kria base overlay (mipi_to_display notebook). I am trying to store a gray image via VDMA (8bits/pixel, Y channel).
Using the following code:
videomode = VideoMode(1280, 720, 8)
mipi.configure(videomode)
frame = mipi.readframe()
frame.shape # (720, 1280)
I get a gray image but, looking at the pynq code I see that pixel data is just written with the B channel. The reason is that v_proc_sys IP is configure to bypass the BGR pixels coming from the demosaic/gamma pipeline.
My question is, how to reconfigure the v_proc_sys IP to convert from RGB to YCRCB and then use the pixel_packer IP (V_8 mode) to store a gray image through VDMA?
something like mipi.v_proc_sys.colorspace(COLOR_IN_YCBCR) doesn´t work
Thank you