-2

I have cyclone II fpga and also ı have a camera attached to it.Fisrtly ı want to take a capture from camera and this capture is passing to fpga and ı want to take this capture from serial port.Can you give me ideas how can do this or are there any example code about this.I am working with verilog .

thanks for help...

4

1 回答 1

1

您需要研究相机如何准确地连接到您的 FPGA 以及您需要如何与之通信。一旦你理解了这个协议和它的连接,你将在 90% 的道路上理解你需要做什么,或者至少能够更好地提出更具体、更智能的问题。=)

例如,您有可能在名为 Camera Link 的总线上使用相机。如果是这样,您将需要阅读协议(例如从https://en.wikipedia.org/wiki/Camera_Link开始),然后确定您是否要自己用 HDL 编写自定义接口(如 Verilog ) 或者如果您要尝试从第 3 方获取和使用现有设计。

一旦你知道如何获取图像,那么你需要做同样的发现来弄清楚你将如何将这些图像发送到你的 PC。您是否已经了解 RS-232 和 UART(或 USB,或您使用的任何东西)?如果没有,您将需要学习足够的知识来实现​​这些接口,或者至少要与您在其他地方获得的现有设计进行接口。

在排序 - 在任何人可以帮助您提供任何具体建议之前,您确实需要进行更多研究。=)

于 2012-12-11T00:56:02.960 回答