Project for "Introduction to Computer Vision" Course at Innopolis University.
A tool to search for a given face on the collection of photos of mass events.
Before doing anything, build the service image:
docker-compose build
Running:
docker-compose up -d
Stopping:
docker-compose down
Logs:
docker-compose logs -f service
docker-compose logs -f postgres
Service Links:
- Page to upload files: http://localhost:8000/images
- Page to search by file: http://localhost:8000/search
Download dataset for face detection evaluation:
python evaluation_dataset_loader.py data/face_detection.json data/detection_metrics_dataset
Code of /lib module was taken from https://github.com/rafaelpadilla/Object-Detection-Metrics public repository.