How to get the image from the fingerprint scanner?
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 i开发者_如何学JAVAn Qt4? It would be best solution for me.
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.
There are some options that abstracts you from the scanner vendor, but they are all paid. In effect they have a single API that covers most model types/versions. I recommend you to design your solution applying a design pattern that abstracts your application from the scanner vendor.
精彩评论