You need to research how exactly the camera is hooked up to your FPGA and how exactly you need to communicate with it. Once you understand this protocol and it's connections, you'll be 90% of the way towards understanding what you need to do, or at least will be better able to ask more specific, intelligent questions. =)
For example, there is a chance that you are working with a camera over a bus called Camera Link. If so, you will need to read up on the protocol (e.g. starting with https://en.wikipedia.org/wiki/Camera_Link), and then determine if you are going to write a custom interface yourself in an HDL (like Verilog) or if you are going to try to obtain and use an existing design from a 3rd party.
Once you know how to get images, then you need to do the same discovery to figure out how you are going to send these images to your PC. Do you already know all about RS-232 and UARTs (or USB, or whatever you are using)? If not, you will need to learn enough to either implement these interfaces, or at least to interface with existing designs that you have obtained elsewhere.
In sort -- you really need to do more research before anyone can help you with any specific advice. =)