Hello!!
I am trying to created Real time video streaming system using Zybo Z7010. My video out is through HDMI port and Video in is using USB Webcam. From Github, I was able to obtain an already working image targeting Zybo-Z7010. Is it possible to add my design to this Pre-built image for zybo, if so how?
I am using Vivado, Vitis, Petalinux all version 2022.1. I have created a Bootable SD card using the image and it works fine, but i am not able to integrate my design to this image. Below given is my designs
I am running a PYNQ image on Zybo board. My question is will just copying my overlay (.bit+.hwh) to the root directory work or should i build a new Pynq image(BOOT.bin) with my design as the base? The problem is I am not able to create image due to unknown reasons.
Can you connect to a Jupyter session? If this is the case, you can just move the overlay to the board, similar to what you will find in all the tutorials.
from pynq import Overlay
pl = Overlay("design_1.bit")
After that, you will need to write VDMA initialization and startup in python.
If you use overlay, you don’t need to rebuild the Pynq image even if you modify the circuit.
I am doing something similar and the HDMI output is an original circuit.
The display circuit worked, but the WEBCAM input wasn’t working. I tried various things on the Ubuntu side, but the cause is still unknown.