mehul03ec
Newbie level 2
I like to read image from harddisk and process on FPGA and again processed image to be stored on Harddisk. So anyone can provide module/code to read and write for (vhdl code). I am using DE2 board.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hi, Since the DE2 board has RS232 and Ethernet, you can use either of these to interface with the PC.
Using RS232, from PC you can send / receive data with the help of hyperterm.
For using Ethernet, i think you have to use Embedded OS if your board supports this.
Now if you are looking for the FPGA to load the images from Hard disk directly, then you are introducing the OS concepts into the FPGA. I say this because to read a file, the FPGA should understand the filesystem and filesystem is a feature of the OS.
So either you can proceed here to port Embedded OS to FPGA or if you want to process the images and can take care of sending it to FPGA,
use a C program in your PC to convert the image to streaming data and send it through RS232.