Face-api.js — JavaScript API for Face Recognition in the Browser with tensorflow.js


 
Thread Tools Search this Thread
Top Forums Web Development Face-api.js — JavaScript API for Face Recognition in the Browser with tensorflow.js
# 1  
Old 11-12-2018
Face-api.js — JavaScript API for Face Recognition in the Browser with tensorflow.js

Quote:
I am excited to say, that it is finally possible to run face recognition in the browser! With this article I am introducing face-api.js, a javascript module, built on top of tensorflow.js core, which implements several CNNs (Convolutional Neural Networks) to solve face detection, face recognition and face landmark detection, optimized for the web and for mobile devices.
Ref:

https://itnext.io/face-api-js-javasc...s-bcc2a6c4cf07
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to run an API from a script and extract fields from output of API

Hi, I need to call an API (GetUsageDetails)from inside a shell script which takes an input argument acct_nbr. The output of API will be like : <usageAccum accumId="450" accumCaptn="PM_125" inclUnits="1410.00" inclUnitsUsed="744.00" shared="true" pooled="false" prorated="false"... (1 Reply)
Discussion started by: rkrish
1 Replies

2. What is on Your Mind?

The weird smelling face [^_]

When I use 'strings' command, usually I'll see a string which is like a face. Today I can't help my self digging it out. 8048595: 5b pop %ebx 8048596: 5e pop %esi 8048597: 5f pop %edi 8048598: 5d ... (0 Replies)
Discussion started by: vistastar
0 Replies

3. Programming

API in C for compress (.Z) ?

Hi all, I would like to know if an API for compress (.Z) exists in C ? I want to write a program which process a large number of data files with efficient compression at the end. Thanks http://fedora.unix.com/images/misc/progress.gif (4 Replies)
Discussion started by: domiq44
4 Replies

4. HP-UX

How to use getdiskbyname() API

I would like to use getdiskbyname() this API to get disk size and disk usage can any one give me an example of c program thanks (0 Replies)
Discussion started by: alert0919
0 Replies
Login or Register to Ask a Question
XML::Atom::Client(3pm)					User Contributed Perl Documentation				    XML::Atom::Client(3pm)

NAME
XML::Atom::Client - A client for the Atom API SYNOPSIS
use XML::Atom::Client; use XML::Atom::Entry; my $api = XML::Atom::Client->new; $api->username('Melody'); $api->password('Nelson'); my $entry = XML::Atom::Entry->new; $entry->title('New Post'); $entry->content('Content of my post.'); my $EditURI = $api->createEntry($PostURI, $entry); my $feed = $api->getFeed($FeedURI); my @entries = $feed->entries; my $entry = $api->getEntry($EditURI); DESCRIPTION
XML::Atom::Client implements a client for the Atom API described at http://bitworking.org/projects/atom/draft-gregorio-09.html, with the authentication scheme described at http://www.intertwingly.net/wiki/pie/DifferentlyAbledClients. NOTE: the API, and particularly the authentication scheme, are still in flux. USAGE
XML::Atom::Client->new(%param) $api->use_soap([ 0 | 1 ]) XML::Atom::Client supports both the REST and SOAP-wrapper versions of the Atom API. By default, the REST version of the API will be used, but you can turn on the SOAP wrapper--for example, if you need to connect to a server that supports only the SOAP wrapper--by calling use_soap with a value of 1: $api->use_soap(1); If called without arguments, returns the current value of the flag. $api->username([ $username ]) If called with an argument, sets the username for login to $username. Returns the current username that will be used when logging in to the Atom server. $api->password([ $password ]) If called with an argument, sets the password for login to $password. Returns the current password that will be used when logging in to the Atom server. $api->createEntry($PostURI, $entry) Creates a new entry. $entry must be an XML::Atom::Entry object. $api->getEntry($EditURI) Retrieves the entry with the given URL $EditURI. Returns an XML::Atom::Entry object. $api->updateEntry($EditURI, $entry) Updates the entry at URL $EditURI with the entry $entry, which must be an XML::Atom::Entry object. Returns true on success, false otherwise. $api->deleteEntry($EditURI) Deletes the entry at URL $EditURI. $api->getFeed($FeedURI) Retrieves the feed at $FeedURI. Returns an XML::Atom::Feed object representing the feed returned from the server. ERROR HANDLING Methods return "undef" on error, and the error message can be retrieved using the errstr method. AUTHOR &; COPYRIGHT Please see the XML::Atom manpage for author, copyright, and license information. perl v5.12.4 2011-09-27 XML::Atom::Client(3pm)