开发者

FlyCapture2 and OpenCV, CMake build question

开发者 https://www.devze.com 2023-01-11 21:27 出处:网络
Platform: amd_64 Operating System: Ubuntu 8.10 Problem: The current release of OpenCV (2.1 at time of writing) and libdc1394 doesn\'开发者_开发问答t properly interface with the new USB-interface Poin

Platform: amd_64 Operating System: Ubuntu 8.10

Problem: The current release of OpenCV (2.1 at time of writing) and libdc1394 doesn'开发者_开发问答t properly interface with the new USB-interface PointGrey High-Res FireFlyMV Color camera.

Does anyone have this camera working with OpenCV on Ubuntu?

Currently, I'm working on writing my own frame-grabber using PointGrey's FlyCapture2 SDK, which works well with the camera. I'd like to interface this with OpenCV, by converting each image I grab into an IplImage object. When I write OpenCV programs, I use CMake. The example code for the FlyCapture2 SDK uses fairly simple makefiles. Does anyone know how I can take the information from the simple FlyCapture2 makefile so I can include the appropriate lines in CMakeLists.txt for my CMake build routine?


Not a simple answer (sorry) - but.

Generally you don't want to use cvCaptureCam() for high performance cameras beyond initial tests that they work. Even for standard interfaces like firewire It is very limited in what features of the camera it can control, it doesn't handle threading well and the performance is poor - especially at high data rates.

The more common way is to control the camera with the makers own SDK and output frames in a form (cv::mat/iplimage) that openCV can process. All openCV image types are very flexible in being able to share data with the camera API and specify padding/row striping etc so you should be able to design it so there is no unnecessary copying.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号