0
votes

I want to get image values and then process this image with my fpga board. But I couldn't import the values of image. I searched block rom usage about it but couldn't find any tutorial or something. How can I import image values? Board is Zynq-7000/verilog/xilinx. Thanks.

1
The size of the image (in bytes, not in height width) is important. You might have a look at a Xilinx application about initializing memory blocks. I tested image processing by uploading (big) images to the Zync DDR memory. (But I am off to bed now). - Oldfart
50x50, small size - user71

1 Answers

0
votes

You'll need to dump raw bytes from the image, in whatever way you will find convenient, and use some third-party tools (like this one) to create COE file that you will use with the core generator for memory initialization.

It seems Xilinx tools doesn't support COE file creation on its own, even from existing binary data.