Sign inSign up

tkdutta/facerecognition

By tkdutta

Updated almost 2 years ago

Recognizes the faces in a given image.

Image
0

73

tkdutta/facerecognition repository overview

Github: https://github.com/tuhindutta/face_recognition

Perform the following steps to run the container locally:

  1. Create the following 3 directories in your current working directory which are to be mounted to the container:

    • reference_images : All images with proper title are stored which are to be identified.
    • target_images : Images are stored which are the targets and the reference images are to be identified in these.
    • processed_images : All identified images are stored here.
  2. Run the following docker command

docker run -d \
-p 5000:5000 \
--name facerecognition \
--mount type=bind,source=${PWD}\reference_images,destination=/app/reference_images \
--mount type=bind,source=${PWD}\target_images,destination=/app/target_images \
--mount type=bind,source=${PWD}\processed_images,destination=/app/processed_images \
tkdutta/facerecognition:tag

Tag summary

Content type

Image

Digest

sha256:f3897f091

Size

1.1 GB

Last updated

almost 2 years ago

docker pull tkdutta/facerecognition:v1.0-ubuntu22.04