Windows Biometric Framework fail











up vote
1
down vote

favorite
1












My friend asked me to write a simple program that captures a fingerprint from the built-in reader on a computer and prints out some kind of identifier. I can choose operating system myself, like a laptop with Windows or Linux, or an Android phone.



I thought that would be simple, surely there are many API:s for this, and I noticed that Microsoft themselves actually provides an API for it. Since I can log into my win10 laptop with the fingerprint reader, I know that the reader works.



For some reason the example that Microsoft themselves provide in their documention does not work for me. https://docs.microsoft.com/en-us/windows/desktop/api/Winbio/nf-winbio-winbiocapturesample



I suppose that the people writing those pages forgot to mention some important aspect or step, perhaps there is a way to add permission somewhere in Visual Studio.



After rewriting and trying many things, at least I get ONE step further in the process, but it still fails.



Here is the current version



#include "pch.h"
#include <iostream>
#include "Windows.h"
#include "Stdio.h"
#include "Conio.h"
#include "Winbio.h"
HRESULT CaptureSample();
void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag);

int main()
{
std::cout << "Hello World!n";
HRESULT x = CaptureSample();
}

HRESULT CaptureSample()
{
HRESULT hr = S_OK;
WINBIO_SESSION_HANDLE sessionHandle = NULL;
WINBIO_REJECT_DETAIL rejectDetail = 0;
// Connect to the system pool.
hr = WinBioOpenSession(
WINBIO_TYPE_FINGERPRINT, // Service provider
WINBIO_POOL_SYSTEM, // Pool type
WINBIO_FLAG_DEFAULT, // Access: Capture raw data
NULL, // Array of biometric unit IDs
0, // Count of biometric unit IDs
WINBIO_DB_DEFAULT, // Default database
&sessionHandle // [out] Session handle
);
if (FAILED(hr))
{
wprintf_s(L"WinBioOpenSession failed. hr = 0x%xn", hr);
goto e_Exit;
}

wprintf_s(L"Start my fingerprint capturing...n");
capture(sessionHandle, WINBIO_DATA_FLAG_INTEGRITY);
capture(sessionHandle, WINBIO_DATA_FLAG_PRIVACY);
capture(sessionHandle, WINBIO_DATA_FLAG_SIGNED);
capture(sessionHandle, WINBIO_DATA_FLAG_OPTION_MASK_PRESENT);
capture(sessionHandle, WINBIO_DATA_FLAG_RAW);
capture(sessionHandle, WINBIO_DATA_FLAG_INTERMEDIATE);
capture(sessionHandle, WINBIO_DATA_FLAG_PROCESSED);
hr = WinBioEnrollCapture(sessionHandle, &rejectDetail);
wprintf_s(L"WinBioEnrollCapture hr=%x rejection = %dn", hr, rejectDetail);

if (sessionHandle != NULL)
{
WinBioCloseSession(sessionHandle);
sessionHandle = NULL;
}

e_Exit:
wprintf_s(L"n Press any key to exit...");
_getch();

return hr;

}

void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag) {
WINBIO_UNIT_ID unitId = 0;
WINBIO_REJECT_DETAIL rejectDetail = 0;
PWINBIO_BIR sample = NULL;
SIZE_T sampleSize = 0;
wprintf_s(L"n Calling WinBioCaptureSample. Flag = %d.n", flag);
HRESULT hr = WinBioCaptureSample(
sessionHandle,
WINBIO_PURPOSE_IDENTIFY,
flag,
&unitId,
&sample,
&sampleSize,
&rejectDetail
);
if (FAILED(hr))
{
if (hr == WINBIO_E_BAD_CAPTURE)
{
wprintf_s(L"n Bad capture; reason: %dn", rejectDetail);
}
else if (hr == E_ACCESSDENIED)
{
wprintf_s(L"n WinBioCaptureSample failed, access denied.");
}
else
{
wprintf_s(L"n WinBioCaptureSample failed. hr = 0x%xn", hr);
}
goto e_Exit;
}

wprintf_s(L"n Swipe processed - Unit ID: %dn", unitId);
wprintf_s(L"n Captured %d bytes.n", sampleSize);

e_Exit:
if (sample != NULL)
{
WinBioFree(sample);
sample = NULL;
}


}


and here is the result of running it:



Hello World!
Start my fingerprint capturing...

Calling WinBioCaptureSample. Flag = 1.

WinBioCaptureSample failed, access denied.
Calling WinBioCaptureSample. Flag = 2.

WinBioCaptureSample failed, access denied.
Calling WinBioCaptureSample. Flag = 4.

WinBioCaptureSample failed, access denied.
Calling WinBioCaptureSample. Flag = 8.

WinBioCaptureSample failed, access denied.
Calling WinBioCaptureSample. Flag = 32.

WinBioCaptureSample failed, access denied.
Calling WinBioCaptureSample. Flag = 64.

WinBioCaptureSample failed, access denied.
Calling WinBioCaptureSample. Flag = 128.

WinBioCaptureSample failed, access denied.WinBioEnrollCapture hr=8009802c rejection = 0

Press any key to exit...


What am I missing?










share|improve this question




























    up vote
    1
    down vote

    favorite
    1












    My friend asked me to write a simple program that captures a fingerprint from the built-in reader on a computer and prints out some kind of identifier. I can choose operating system myself, like a laptop with Windows or Linux, or an Android phone.



    I thought that would be simple, surely there are many API:s for this, and I noticed that Microsoft themselves actually provides an API for it. Since I can log into my win10 laptop with the fingerprint reader, I know that the reader works.



    For some reason the example that Microsoft themselves provide in their documention does not work for me. https://docs.microsoft.com/en-us/windows/desktop/api/Winbio/nf-winbio-winbiocapturesample



    I suppose that the people writing those pages forgot to mention some important aspect or step, perhaps there is a way to add permission somewhere in Visual Studio.



    After rewriting and trying many things, at least I get ONE step further in the process, but it still fails.



    Here is the current version



    #include "pch.h"
    #include <iostream>
    #include "Windows.h"
    #include "Stdio.h"
    #include "Conio.h"
    #include "Winbio.h"
    HRESULT CaptureSample();
    void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag);

    int main()
    {
    std::cout << "Hello World!n";
    HRESULT x = CaptureSample();
    }

    HRESULT CaptureSample()
    {
    HRESULT hr = S_OK;
    WINBIO_SESSION_HANDLE sessionHandle = NULL;
    WINBIO_REJECT_DETAIL rejectDetail = 0;
    // Connect to the system pool.
    hr = WinBioOpenSession(
    WINBIO_TYPE_FINGERPRINT, // Service provider
    WINBIO_POOL_SYSTEM, // Pool type
    WINBIO_FLAG_DEFAULT, // Access: Capture raw data
    NULL, // Array of biometric unit IDs
    0, // Count of biometric unit IDs
    WINBIO_DB_DEFAULT, // Default database
    &sessionHandle // [out] Session handle
    );
    if (FAILED(hr))
    {
    wprintf_s(L"WinBioOpenSession failed. hr = 0x%xn", hr);
    goto e_Exit;
    }

    wprintf_s(L"Start my fingerprint capturing...n");
    capture(sessionHandle, WINBIO_DATA_FLAG_INTEGRITY);
    capture(sessionHandle, WINBIO_DATA_FLAG_PRIVACY);
    capture(sessionHandle, WINBIO_DATA_FLAG_SIGNED);
    capture(sessionHandle, WINBIO_DATA_FLAG_OPTION_MASK_PRESENT);
    capture(sessionHandle, WINBIO_DATA_FLAG_RAW);
    capture(sessionHandle, WINBIO_DATA_FLAG_INTERMEDIATE);
    capture(sessionHandle, WINBIO_DATA_FLAG_PROCESSED);
    hr = WinBioEnrollCapture(sessionHandle, &rejectDetail);
    wprintf_s(L"WinBioEnrollCapture hr=%x rejection = %dn", hr, rejectDetail);

    if (sessionHandle != NULL)
    {
    WinBioCloseSession(sessionHandle);
    sessionHandle = NULL;
    }

    e_Exit:
    wprintf_s(L"n Press any key to exit...");
    _getch();

    return hr;

    }

    void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag) {
    WINBIO_UNIT_ID unitId = 0;
    WINBIO_REJECT_DETAIL rejectDetail = 0;
    PWINBIO_BIR sample = NULL;
    SIZE_T sampleSize = 0;
    wprintf_s(L"n Calling WinBioCaptureSample. Flag = %d.n", flag);
    HRESULT hr = WinBioCaptureSample(
    sessionHandle,
    WINBIO_PURPOSE_IDENTIFY,
    flag,
    &unitId,
    &sample,
    &sampleSize,
    &rejectDetail
    );
    if (FAILED(hr))
    {
    if (hr == WINBIO_E_BAD_CAPTURE)
    {
    wprintf_s(L"n Bad capture; reason: %dn", rejectDetail);
    }
    else if (hr == E_ACCESSDENIED)
    {
    wprintf_s(L"n WinBioCaptureSample failed, access denied.");
    }
    else
    {
    wprintf_s(L"n WinBioCaptureSample failed. hr = 0x%xn", hr);
    }
    goto e_Exit;
    }

    wprintf_s(L"n Swipe processed - Unit ID: %dn", unitId);
    wprintf_s(L"n Captured %d bytes.n", sampleSize);

    e_Exit:
    if (sample != NULL)
    {
    WinBioFree(sample);
    sample = NULL;
    }


    }


    and here is the result of running it:



    Hello World!
    Start my fingerprint capturing...

    Calling WinBioCaptureSample. Flag = 1.

    WinBioCaptureSample failed, access denied.
    Calling WinBioCaptureSample. Flag = 2.

    WinBioCaptureSample failed, access denied.
    Calling WinBioCaptureSample. Flag = 4.

    WinBioCaptureSample failed, access denied.
    Calling WinBioCaptureSample. Flag = 8.

    WinBioCaptureSample failed, access denied.
    Calling WinBioCaptureSample. Flag = 32.

    WinBioCaptureSample failed, access denied.
    Calling WinBioCaptureSample. Flag = 64.

    WinBioCaptureSample failed, access denied.
    Calling WinBioCaptureSample. Flag = 128.

    WinBioCaptureSample failed, access denied.WinBioEnrollCapture hr=8009802c rejection = 0

    Press any key to exit...


    What am I missing?










    share|improve this question


























      up vote
      1
      down vote

      favorite
      1









      up vote
      1
      down vote

      favorite
      1






      1





      My friend asked me to write a simple program that captures a fingerprint from the built-in reader on a computer and prints out some kind of identifier. I can choose operating system myself, like a laptop with Windows or Linux, or an Android phone.



      I thought that would be simple, surely there are many API:s for this, and I noticed that Microsoft themselves actually provides an API for it. Since I can log into my win10 laptop with the fingerprint reader, I know that the reader works.



      For some reason the example that Microsoft themselves provide in their documention does not work for me. https://docs.microsoft.com/en-us/windows/desktop/api/Winbio/nf-winbio-winbiocapturesample



      I suppose that the people writing those pages forgot to mention some important aspect or step, perhaps there is a way to add permission somewhere in Visual Studio.



      After rewriting and trying many things, at least I get ONE step further in the process, but it still fails.



      Here is the current version



      #include "pch.h"
      #include <iostream>
      #include "Windows.h"
      #include "Stdio.h"
      #include "Conio.h"
      #include "Winbio.h"
      HRESULT CaptureSample();
      void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag);

      int main()
      {
      std::cout << "Hello World!n";
      HRESULT x = CaptureSample();
      }

      HRESULT CaptureSample()
      {
      HRESULT hr = S_OK;
      WINBIO_SESSION_HANDLE sessionHandle = NULL;
      WINBIO_REJECT_DETAIL rejectDetail = 0;
      // Connect to the system pool.
      hr = WinBioOpenSession(
      WINBIO_TYPE_FINGERPRINT, // Service provider
      WINBIO_POOL_SYSTEM, // Pool type
      WINBIO_FLAG_DEFAULT, // Access: Capture raw data
      NULL, // Array of biometric unit IDs
      0, // Count of biometric unit IDs
      WINBIO_DB_DEFAULT, // Default database
      &sessionHandle // [out] Session handle
      );
      if (FAILED(hr))
      {
      wprintf_s(L"WinBioOpenSession failed. hr = 0x%xn", hr);
      goto e_Exit;
      }

      wprintf_s(L"Start my fingerprint capturing...n");
      capture(sessionHandle, WINBIO_DATA_FLAG_INTEGRITY);
      capture(sessionHandle, WINBIO_DATA_FLAG_PRIVACY);
      capture(sessionHandle, WINBIO_DATA_FLAG_SIGNED);
      capture(sessionHandle, WINBIO_DATA_FLAG_OPTION_MASK_PRESENT);
      capture(sessionHandle, WINBIO_DATA_FLAG_RAW);
      capture(sessionHandle, WINBIO_DATA_FLAG_INTERMEDIATE);
      capture(sessionHandle, WINBIO_DATA_FLAG_PROCESSED);
      hr = WinBioEnrollCapture(sessionHandle, &rejectDetail);
      wprintf_s(L"WinBioEnrollCapture hr=%x rejection = %dn", hr, rejectDetail);

      if (sessionHandle != NULL)
      {
      WinBioCloseSession(sessionHandle);
      sessionHandle = NULL;
      }

      e_Exit:
      wprintf_s(L"n Press any key to exit...");
      _getch();

      return hr;

      }

      void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag) {
      WINBIO_UNIT_ID unitId = 0;
      WINBIO_REJECT_DETAIL rejectDetail = 0;
      PWINBIO_BIR sample = NULL;
      SIZE_T sampleSize = 0;
      wprintf_s(L"n Calling WinBioCaptureSample. Flag = %d.n", flag);
      HRESULT hr = WinBioCaptureSample(
      sessionHandle,
      WINBIO_PURPOSE_IDENTIFY,
      flag,
      &unitId,
      &sample,
      &sampleSize,
      &rejectDetail
      );
      if (FAILED(hr))
      {
      if (hr == WINBIO_E_BAD_CAPTURE)
      {
      wprintf_s(L"n Bad capture; reason: %dn", rejectDetail);
      }
      else if (hr == E_ACCESSDENIED)
      {
      wprintf_s(L"n WinBioCaptureSample failed, access denied.");
      }
      else
      {
      wprintf_s(L"n WinBioCaptureSample failed. hr = 0x%xn", hr);
      }
      goto e_Exit;
      }

      wprintf_s(L"n Swipe processed - Unit ID: %dn", unitId);
      wprintf_s(L"n Captured %d bytes.n", sampleSize);

      e_Exit:
      if (sample != NULL)
      {
      WinBioFree(sample);
      sample = NULL;
      }


      }


      and here is the result of running it:



      Hello World!
      Start my fingerprint capturing...

      Calling WinBioCaptureSample. Flag = 1.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 2.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 4.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 8.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 32.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 64.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 128.

      WinBioCaptureSample failed, access denied.WinBioEnrollCapture hr=8009802c rejection = 0

      Press any key to exit...


      What am I missing?










      share|improve this question















      My friend asked me to write a simple program that captures a fingerprint from the built-in reader on a computer and prints out some kind of identifier. I can choose operating system myself, like a laptop with Windows or Linux, or an Android phone.



      I thought that would be simple, surely there are many API:s for this, and I noticed that Microsoft themselves actually provides an API for it. Since I can log into my win10 laptop with the fingerprint reader, I know that the reader works.



      For some reason the example that Microsoft themselves provide in their documention does not work for me. https://docs.microsoft.com/en-us/windows/desktop/api/Winbio/nf-winbio-winbiocapturesample



      I suppose that the people writing those pages forgot to mention some important aspect or step, perhaps there is a way to add permission somewhere in Visual Studio.



      After rewriting and trying many things, at least I get ONE step further in the process, but it still fails.



      Here is the current version



      #include "pch.h"
      #include <iostream>
      #include "Windows.h"
      #include "Stdio.h"
      #include "Conio.h"
      #include "Winbio.h"
      HRESULT CaptureSample();
      void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag);

      int main()
      {
      std::cout << "Hello World!n";
      HRESULT x = CaptureSample();
      }

      HRESULT CaptureSample()
      {
      HRESULT hr = S_OK;
      WINBIO_SESSION_HANDLE sessionHandle = NULL;
      WINBIO_REJECT_DETAIL rejectDetail = 0;
      // Connect to the system pool.
      hr = WinBioOpenSession(
      WINBIO_TYPE_FINGERPRINT, // Service provider
      WINBIO_POOL_SYSTEM, // Pool type
      WINBIO_FLAG_DEFAULT, // Access: Capture raw data
      NULL, // Array of biometric unit IDs
      0, // Count of biometric unit IDs
      WINBIO_DB_DEFAULT, // Default database
      &sessionHandle // [out] Session handle
      );
      if (FAILED(hr))
      {
      wprintf_s(L"WinBioOpenSession failed. hr = 0x%xn", hr);
      goto e_Exit;
      }

      wprintf_s(L"Start my fingerprint capturing...n");
      capture(sessionHandle, WINBIO_DATA_FLAG_INTEGRITY);
      capture(sessionHandle, WINBIO_DATA_FLAG_PRIVACY);
      capture(sessionHandle, WINBIO_DATA_FLAG_SIGNED);
      capture(sessionHandle, WINBIO_DATA_FLAG_OPTION_MASK_PRESENT);
      capture(sessionHandle, WINBIO_DATA_FLAG_RAW);
      capture(sessionHandle, WINBIO_DATA_FLAG_INTERMEDIATE);
      capture(sessionHandle, WINBIO_DATA_FLAG_PROCESSED);
      hr = WinBioEnrollCapture(sessionHandle, &rejectDetail);
      wprintf_s(L"WinBioEnrollCapture hr=%x rejection = %dn", hr, rejectDetail);

      if (sessionHandle != NULL)
      {
      WinBioCloseSession(sessionHandle);
      sessionHandle = NULL;
      }

      e_Exit:
      wprintf_s(L"n Press any key to exit...");
      _getch();

      return hr;

      }

      void capture(WINBIO_SESSION_HANDLE sessionHandle, int flag) {
      WINBIO_UNIT_ID unitId = 0;
      WINBIO_REJECT_DETAIL rejectDetail = 0;
      PWINBIO_BIR sample = NULL;
      SIZE_T sampleSize = 0;
      wprintf_s(L"n Calling WinBioCaptureSample. Flag = %d.n", flag);
      HRESULT hr = WinBioCaptureSample(
      sessionHandle,
      WINBIO_PURPOSE_IDENTIFY,
      flag,
      &unitId,
      &sample,
      &sampleSize,
      &rejectDetail
      );
      if (FAILED(hr))
      {
      if (hr == WINBIO_E_BAD_CAPTURE)
      {
      wprintf_s(L"n Bad capture; reason: %dn", rejectDetail);
      }
      else if (hr == E_ACCESSDENIED)
      {
      wprintf_s(L"n WinBioCaptureSample failed, access denied.");
      }
      else
      {
      wprintf_s(L"n WinBioCaptureSample failed. hr = 0x%xn", hr);
      }
      goto e_Exit;
      }

      wprintf_s(L"n Swipe processed - Unit ID: %dn", unitId);
      wprintf_s(L"n Captured %d bytes.n", sampleSize);

      e_Exit:
      if (sample != NULL)
      {
      WinBioFree(sample);
      sample = NULL;
      }


      }


      and here is the result of running it:



      Hello World!
      Start my fingerprint capturing...

      Calling WinBioCaptureSample. Flag = 1.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 2.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 4.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 8.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 32.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 64.

      WinBioCaptureSample failed, access denied.
      Calling WinBioCaptureSample. Flag = 128.

      WinBioCaptureSample failed, access denied.WinBioEnrollCapture hr=8009802c rejection = 0

      Press any key to exit...


      What am I missing?







      visual-studio biometrics






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 at 2:31

























      asked Nov 22 at 2:23









      Scott Johansen

      1951210




      1951210
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          I think you should try using another API, though your objective is not clear here. You can check the CloudABIS™ which is superscalar, biometrics-as-a-service (BaaS) matching system for fast deployment at lower costs. The API is provided by M2SYS TEchnology and they have an vast array of hardware also.






          share|improve this answer





















          • OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
            – Scott Johansen
            Nov 25 at 3:48











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423037%2fwindows-biometric-framework-fail%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          I think you should try using another API, though your objective is not clear here. You can check the CloudABIS™ which is superscalar, biometrics-as-a-service (BaaS) matching system for fast deployment at lower costs. The API is provided by M2SYS TEchnology and they have an vast array of hardware also.






          share|improve this answer





















          • OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
            – Scott Johansen
            Nov 25 at 3:48















          up vote
          1
          down vote













          I think you should try using another API, though your objective is not clear here. You can check the CloudABIS™ which is superscalar, biometrics-as-a-service (BaaS) matching system for fast deployment at lower costs. The API is provided by M2SYS TEchnology and they have an vast array of hardware also.






          share|improve this answer





















          • OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
            – Scott Johansen
            Nov 25 at 3:48













          up vote
          1
          down vote










          up vote
          1
          down vote









          I think you should try using another API, though your objective is not clear here. You can check the CloudABIS™ which is superscalar, biometrics-as-a-service (BaaS) matching system for fast deployment at lower costs. The API is provided by M2SYS TEchnology and they have an vast array of hardware also.






          share|improve this answer












          I think you should try using another API, though your objective is not clear here. You can check the CloudABIS™ which is superscalar, biometrics-as-a-service (BaaS) matching system for fast deployment at lower costs. The API is provided by M2SYS TEchnology and they have an vast array of hardware also.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 at 9:58









          S Mahbubur Rahman

          112




          112












          • OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
            – Scott Johansen
            Nov 25 at 3:48


















          • OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
            – Scott Johansen
            Nov 25 at 3:48
















          OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
          – Scott Johansen
          Nov 25 at 3:48




          OK, thanks for the pointer, will definitely check that out! I'm curious why you said that I should try another API, is that microsoft api known to work poorly? My objective is to scan a fingerprint, and then print out some kind of ID calculated from the result of a set of recognition filters applied to the image. Then the next step would be to compare the ID with other known IDs.
          – Scott Johansen
          Nov 25 at 3:48


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423037%2fwindows-biometric-framework-fail%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Contact image not getting when fetch all contact list from iPhone by CNContact

          count number of partitions of a set with n elements into k subsets

          A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks