tags:

views:

245

answers:

1

I'm using C++ and I have to capture image from fingerprint scanner. Is there some libraries for this case? I need free solutions. And better cross-platform solutions, but the aim-OS is Vista. May be there are some methods in Qt4? It would be best solution for me.

A: 

Your best bet is to figure out exactly what manufacturer makes the scanner (it's not ASUS -- there are only two or three manufacturers of the sort of capacitive sensors used in laptops. My bet is that it's a UPEK scanner) and what model it is, then go to the manufacturer's web site and see what tools they provide. If there aren't any on the web site, contact the manufacturer.

Note that it's very likely that the SDK for the scanner (a) is available only if you sign a non-disclosure agreement and (b) costs money. If you're lucky, the manufacturer's SDK complies with the BioAPI standard, which will make it easier (note: not "easy") to use your code with scanners from other vendors.

swillden
Thanks, but... I hoped there are some versatile methods for all types of scanners. Like accessing the web-cam.
KyberProtagonistes
My point is that those versatile methods you hoped for don't exist. The BioAPI consortium is working towards the standards needed, but it's a long way off.
swillden