Skip to content

Latest commit

 

History

History
69 lines (54 loc) · 1.97 KB

README.md

File metadata and controls

69 lines (54 loc) · 1.97 KB

DIGIBOXX-FACE-CLUSTER

Face Recognition System designed for the Digiboxx.com Hackathon

Explore the docs »
· Report Bug · Request Feature ·

SETUP (Ubuntu 22.04 LTS, 64 bit x86)

sudo apt update
  • Install Python3.9:

    sudo add-apt-repository ppa:deadsnakes/ppa
    apt list | grep python3.10
    sudo apt install python3.9
    sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
    sudo update-alternatives --config python3
    sudo apt-get install python3.9-distutils
  • DOWNLOAD dlib from here:

  • MOVE dlib-19.24.0-cp39-cp39-linux_x86_64.whl to DIGIBOXX-HACKATHON directory

  • Install virtualenv:

    sudo apt install virtualenv
  • Install the repository:

    git clone https://github.com/shubhamistic/DIGIBOXX-FACE-CLUSTER.git
  • Activate virtualenv and install the modules (use byobu):

    virtualenv DIGIBOXX-FACE-CLUSTER
    cd DIGIBOXX-FACE-CLUSTER
    source bin/activate
    pip install cmake
    pip install dlib-19.24.0-cp39-cp39-linux_x86_64.whl
    pip install --no-cache-dir -r requirements.txt
  • Run the daemon using:

    python run.py <server_url> <daemon_authentication_key>

About the Author

This repository is maintained by shubhamistic, a passionate programmer and web developer. Explore my projects and join me on my journey to create innovative solutions and push the boundaries of what's possible.

(back to top)