473,659 Members | 3,082 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Microsoft Fingerprint Reader SDK/API

Hello,

I have to develop an application which use Microsoft Fingerprint
Reader.
This device can be handled like a scanner? So can i use a class inside
Platform SDK or API? There are resources?
I only need to be able to capture images generated by the fingerprint
reader (i would have already an algorithm to compare 2 fingerprint
images).

If somebody could help me, or suggest me how i can move.

Best regards,
De Togni Luigino

Nov 22 '05 #1
5 27188
Hi,
I've no experience of fingerprint scanner, but if it works the same way as a
scanner you could try the following if you're using XP.

In your project, add a reference to Microsoft Windows Image Acquisition
Library v2.0.

To use the wizard to scan an image, try

WIA.CommonDialo g dialog = new WIA.CommonDialo gClass();
WIA.Device device = dialog.ShowSele ctDevice(
WIA.WiaDeviceTy pe.ScannerDevic eType, true, false);
dialog.ShowAcqu isitionWizard(d evice);

Alternatively, the following code allows you to scan the image and
programmically control where it is saved.

WIA.CommonDialo g dialog = new WIA.CommonDialo gClass();
WIA.ImageFile file = dialog.ShowAcqu ireImage(
WIA.WiaDeviceTy pe.ScannerDevic eType,
WIA.WiaImageInt ent.Unspecified Intent,
WIA.WiaImageBia s.MaximizeQuali ty,
WIA.FormatID.wi aFormatJPEG,
true, true, false);
file.SaveFile(@ "c:\myimage ." + file.FileExtens ion);

All the Best,
Phil.

"le*******@gmai l.com" wrote:
Hello,

I have to develop an application which use Microsoft Fingerprint
Reader.
This device can be handled like a scanner? So can i use a class inside
Platform SDK or API? There are resources?
I only need to be able to capture images generated by the fingerprint
reader (i would have already an algorithm to compare 2 fingerprint
images).

If somebody could help me, or suggest me how i can move.

Best regards,
De Togni Luigino

Nov 22 '05 #2
Thank you for your help, but your example is in .Net?
Sorry could you translate (or send me a link) to a C++ (or MFC Visual
c++) example?

Thank you.

Lewis

Phil Williams ha scritto:
Hi,
I've no experience of fingerprint scanner, but if it works the same way as a
scanner you could try the following if you're using XP.

In your project, add a reference to Microsoft Windows Image Acquisition
Library v2.0.

To use the wizard to scan an image, try

WIA.CommonDialo g dialog = new WIA.CommonDialo gClass();
WIA.Device device = dialog.ShowSele ctDevice(
WIA.WiaDeviceTy pe.ScannerDevic eType, true, false);
dialog.ShowAcqu isitionWizard(d evice);

Alternatively, the following code allows you to scan the image and
programmically control where it is saved.

WIA.CommonDialo g dialog = new WIA.CommonDialo gClass();
WIA.ImageFile file = dialog.ShowAcqu ireImage(
WIA.WiaDeviceTy pe.ScannerDevic eType,
WIA.WiaImageInt ent.Unspecified Intent,
WIA.WiaImageBia s.MaximizeQuali ty,
WIA.FormatID.wi aFormatJPEG,
true, true, false);
file.SaveFile(@ "c:\myimage ." + file.FileExtens ion);

All the Best,
Phil.

"le*******@gmai l.com" wrote:
Hello,

I have to develop an application which use Microsoft Fingerprint
Reader.
This device can be handled like a scanner? So can i use a class inside
Platform SDK or API? There are resources?
I only need to be able to capture images generated by the fingerprint
reader (i would have already an algorithm to compare 2 fingerprint
images).

If somebody could help me, or suggest me how i can move.

Best regards,
De Togni Luigino


Nov 22 '05 #3
As this is a .Net forum, I had assumed you required a .Net example (the
example was c#).

Please find below a c++ (.Net) example below. It I have time, I will post a
MFC example later.

// Using the wizard
Interop::WIA::C ommonDialog * dialog = new Interop::WIA::C ommonDialogClas s();
Interop::WIA::D evice * device = dialog->ShowSelectDevi ce(
Interop::WIA::W iaDeviceType::S cannerDeviceTyp e, true, true);

if (device)
{
dialog->ShowAcquisitio nWizard(device) ;
}

// Without the wizard
Interop::WIA::C ommonDialog * dialog = new Interop::WIA::C ommonDialogClas s();
Interop::WIA::I mageFile * file = dialog->ShowAcquireIma ge(
Interop::WIA::W iaDeviceType::S cannerDeviceTyp e,
Interop::WIA::W iaImageIntent:: UnspecifiedInte nt,
Interop::WIA::W iaImageBias::Ma ximizeQuality,
Interop::WIA::F ormatID::wiaFor matJPEG,
true, true, false);

if (file)
{
System::Text::S tringBuilder * fileName =
new System::Text::S tringBuilder("c :\\myimage.");
fileName->Append(file->FileExtension) ;
file->SaveFile(fileN ame->ToString());
}

Regards,
Phil.

"lewix" wrote:
Thank you for your help, but your example is in .Net?
Sorry could you translate (or send me a link) to a C++ (or MFC Visual
c++) example?

Thank you.

Lewis

Phil Williams ha scritto:
Hi,
I've no experience of fingerprint scanner, but if it works the same way as a
scanner you could try the following if you're using XP.

In your project, add a reference to Microsoft Windows Image Acquisition
Library v2.0.

To use the wizard to scan an image, try

WIA.CommonDialo g dialog = new WIA.CommonDialo gClass();
WIA.Device device = dialog.ShowSele ctDevice(
WIA.WiaDeviceTy pe.ScannerDevic eType, true, false);
dialog.ShowAcqu isitionWizard(d evice);

Alternatively, the following code allows you to scan the image and
programmically control where it is saved.

WIA.CommonDialo g dialog = new WIA.CommonDialo gClass();
WIA.ImageFile file = dialog.ShowAcqu ireImage(
WIA.WiaDeviceTy pe.ScannerDevic eType,
WIA.WiaImageInt ent.Unspecified Intent,
WIA.WiaImageBia s.MaximizeQuali ty,
WIA.FormatID.wi aFormatJPEG,
true, true, false);
file.SaveFile(@ "c:\myimage ." + file.FileExtens ion);

All the Best,
Phil.

"le*******@gmai l.com" wrote:
Hello,

I have to develop an application which use Microsoft Fingerprint
Reader.
This device can be handled like a scanner? So can i use a class inside
Platform SDK or API? There are resources?
I only need to be able to capture images generated by the fingerprint
reader (i would have already an algorithm to compare 2 fingerprint
images).

If somebody could help me, or suggest me how i can move.

Best regards,
De Togni Luigino


Nov 22 '05 #4
Many many thanks Phil,
i know C#, but i have been developing an MFC application for 9 months,
so i forget some things about C#. I have to re-study :)

OK now i try the code you suggested me, if in future you will have time
to write it in MFC i will appreciate.

Thanx,

Lewix

Nov 22 '05 #5
The guys at www.griaule.com has a FREE SDK that supports the MS Fingerprint
Reader, just download it. There's a sample (with source code in many
languages, including C# e C++.NET).

"le*******@gmai l.com" wrote:
Hello,

I have to develop an application which use Microsoft Fingerprint
Reader.
This device can be handled like a scanner? So can i use a class inside
Platform SDK or API? There are resources?
I only need to be able to capture images generated by the fingerprint
reader (i would have already an algorithm to compare 2 fingerprint
images).

If somebody could help me, or suggest me how i can move.

Best regards,
De Togni Luigino

Nov 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1364
by: lewixlabs | last post by:
Hello, I have to develop an application which use Microsoft Fingerprint Reader. This device can be handled like a scanner? So can i use a class inside Platform SDK or API? There are resources? I only need to be able to capture images generated by the fingerprint reader (i would have already an algorithm to compare 2 fingerprint images).
23
12623
by: Roel Melchers | last post by:
My ACCESS-database contains all members of my association. When the members attend to a meeting I want to record their presence. When they enter they identify themselves by putting their finger on a fingerprint reader. When they leave, they do the same. But... how to set up the software to connect de fingerprint reader to the
1
4708
by: Roel Melchers | last post by:
How to connect my new bought fingerprint reader to my database. My fingerprint reader came with a SDK (Software Development Kit). With that SDK, it said, it is very easy to connect the reader to my msaccess-database. But not for me. Any ideas or tips how to go about this problem?
3
7739
by: Javier Camacho | last post by:
Hi , We want to deploy a Microsoft Fingerprint solution in order to authenticate our ASP.NET applications. I want to know if exists a SDK to Microsoft FingerPrint Reader or if We have to use the Fingerprinter manager supplies by Microsoft. Other question, can FingerPrint used to autentication on the Active Directory in the XP WinLogon?, I had read that this practice isn't good but I don't know the reason, FingerPrint reader doesn't...
8
11566
by: Jon Vaughan | last post by:
Has anyone had any exposure to a fingerprint SDK ? If so what did you use and how and how did you find it ? Thanks
0
1367
by: Robson Carvalho Machado | last post by:
Dear Friends, My developing environment is running under Windows 2000 Advanced Server, so I'm having problems to initialize MS FP Reader. I've downloaded GRFinger Desktop Login, GRFinger 4.1 FREE and SDK fron Griaule but all I got was a message that says "Initializing Reader" "Inicializando o Leitor de Impressão Digital" but not occurs after that and MS FP Reader remains with all lights off.
6
12280
by: Martin Adhie | last post by:
Hi Guys, I start to learn C++, because I got win API which interating with Fingerprint reader from Authentec, it comes with SDK and program samples. I just want to create application where by scan fingerprint and directly recorded in the database SQL Server. Does anyone able to assist me on this, I'll very much appreciate. Best Regards,
0
1876
by: durumdara | last post by:
Hi! I have an application (Python + wx) somewhere. The users use they fingerprint to log. But we have a problem that in this time the fingerprint logon is do REAL windows logon, so every user need a windows user too, and many times it need to close/open application, and Windows. We need better solution. We tried MS Fingerprint Reader, but that is working in same method: it
0
1416
by: jessontan | last post by:
Could anyone know how to operate the fingerprint scanner as reader in attendance system? Help me please....
4
4527
by: mlmn | last post by:
I bought an IBM USB Fingerprint reader. I want to use it to authenticate a user for database access. When some one tries to access a database, his ID should be provided and then his fingerprint should be matched with an already stored fingerprint. I do not know how to configure the device. Searching the internet did not give me any useful resut. Anyone out there please help. I am doing the programming in php to access a database through the web....
0
8428
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8335
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8528
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8627
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1976
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1737
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.