Giter Club home page Giter Club logo

libfprint's People

Contributors

anarsoul avatar azzieg avatar gchain avatar gws avatar hadess avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

libfprint's Issues

Identify without enroll finger

For identify functionality, libfprint offer the functions fp_identify_finger*. These functions needs a allocated-memory list with all storage print data. However, sometimes this pre-allocation is not possible or not desirable. For example, comparisson of print datas from a database, in current state:


device = getDevice();
resultSet = findAllPrintDatasFromDatabase();
list = array();

while ( printData = resultSet.next() ) {
    list.push(printData);
}

result = fp_identify_finger(device,list);

If database's print data list is too big could occur memory overflow. And need to iterate over all registers from query's result set. I want a function what permit a one-to-one comparison, how the fp_compare_print_data() below:


device = getDevice();
resultSet = findAllPrintDatasFromDatabase();
enrolledPrintData = fp_enroll_finger(device);

result = 0;

while ( printData = resultSet.next() ) {
    if (result = fp_compare_print_data(enrolledPrintData,printData)) {
          break;
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.