Sign inSign up

holymatch/faceengine

By holymatch

Updated about 8 years ago

Face Engine

Image
0

220

holymatch/faceengine repository overview

Face Engine

Face Engine Docker Image

The source code is for my dissertations A Deep Learning Based Face Recognition Application with Augmented Reality on Microsoft Hololens. This server is used to recognize person based on face database.

Run the server

It is highly recommand to use face system docker compose to run the Face Engine with the Face Information Server.

docker-compose up -d

Setup Face Information Server and Face Engine in different hosts

To start the Face Information Server and Face Engine in different hosts, we need to expose ports to OS. Use -p 5002:5002 to map the faceengine port to OS port 5002.

To keep the data permanently we can create docker volume to store the data. To create and map the volume to Docker, run the following comamand:

$ docker volume create faceengine-data-volume

Start the Docker with volume and hosts mapping

$ docker run -d \
  --name faceengine \
  --mount source=faceengine-data-volume,target=/Data/KnowFace \
  -p 5002:5002 \
  holymatch/faceengine:latest

Tag summary

Content type

Image

Digest

Size

801.6 MB

Last updated

about 8 years ago

docker pull holymatch/faceengine