Giter Club home page Giter Club logo

nada-faces-api's Introduction

Nada faces API

An api to store and search faces using Amazon Rekognition. Consumed from nada.

faces

Setup

System dependencies:

  • Ruby 2.6.0
  • Postgres 10+
  • Heroku cli

Run the setup script:

$ bin/setup

Run the development server:

$ heroku local

Tests

$ rails t test/*

API

Auth requires a super secret key sent as a query parameter in the request URL: /api/endpoint?secret=super-secret-key

POST /api/faces

Upload an image with a face.

POST /api/faces {
  face: {
    file_id: <s3filekey_of_face_present_in_image>,
  }
}

{
  face_id: face_id,        # Face ID assigned by Rekognition
  image_id: image_id,      # Image ID assigned by Rekognition
  confidence: confidence,  # Confidence that there's in face a face
  response: response_data, # Entire response hash from Rekognition
}

POST /api/search

Search for similar faces.

POST /api/search {
  search: {
    file_id: <s3filekey_of_face_present_in_image>
  }
}

{
  matches: [{
    face_id: face_id,      # Face ID identified in face collection
    similarity: 0.96,      # Similarity from face in provided image
  }],
  response: response_data, # Entire response hash from Rekognition
}

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.