Veronica
Veronica

Reputation: 429

How do I use C++ to acquire image from frame grabber?

I would like to know how is it possible to use a free C++ program to acquire image from a matrix vision frame grabber. Thanks.

Upvotes: 0

Views: 762

Answers (3)

user184975
user184975

Reputation: 1

The SDK (hopefully a dll with some exported functions for your help) usually comes by installing the grabber's drivers.Since it is a graphic card my guess would be that it would be found among the media devices which you can retrieve.

The SDK is stand alone and therefore can be used by your code in c++

Upvotes: 0

sellibitze
sellibitze

Reputation: 28097

Check the documentation of your frame grabber card. Look for "SDK" (software development kit). Maybe your operating system has its own interface which you can use if the "driver" has been installed. I would guess you have to do both things: Install all drivers and use some special library as part of the SDK that is provided with this product.

Upvotes: 0

Related Questions