Our container images are hosted on DockerHub. Click the following link to view our web-app's image and machine-learning-client's image respectively:
Our Face Recognition Service offers a user-friendly interface for either capturing a selfie or uploading a pre-existing image. Once you submit your photo, we will process it, identifying and highlighting each human face with a distinct red box.
The application is deployed and publicly accessible. You can interact with it directly without installing anything locally.
- URL: http://134.209.170.83:6001
- Just click the link or copy-paste it into your browser's address bar.
If you are using Google Chrome and need to use features that require camera access (like taking a photo), follow these steps to bypass security restrictions due to the site being hosted on a bare IP address:
-
Open Chrome Flags:
- Type
chrome://flags/#unsafely-treat-insecure-origin-as-secure
in your Chrome address bar and pressEnter
.
- Type
-
Enable Insecure Origins:
- In the "Insecure origins treated as secure" section, add
http://134.209.170.83:6001
. - Change the dropdown from 'Disabled' to 'Enabled'.
- In the "Insecure origins treated as secure" section, add
-
Relaunch Chrome:
- Click the 'Relaunch' button to apply the changes.
Please note that this workaround should be used cautiously as it can introduce security risks. It's recommended only for testing or non-sensitive use. We apologize for any inconvenience and are working to provide a more seamless experience in future updates.
- Ensure you have Python 3.12 installed on your system.
- Make sure you have Docker installed and running on your computer.
- Our project includes a feature to take a selfie from the front-end. For this, ensure your computer has a camera and that it is accessible via your browser.
-
Clone the repository:
git clone https://github.com/software-students-fall2023/5-final-project-jungle-gap
-
Navigate to the project root directory:
cd 5-final-project-jungle-gap
-
Start the
Docker
application. -
Use
docker
to pull the images from Docker Hub:docker pull isomorphismss/web_app:latest docker pull isomorphismss/ml_client:latest
-
Start the application using
docker-compose
:docker-compose up
-
Verify that the project is up and running by checking for the following messages in your terminal:
my_web_app | * Running on all addresses (0.0.0.0) my_web_app | * Running on http://127.0.0.1:5000
my_ml_client | * Running on all addresses (0.0.0.0) my_ml_client | * Running on http://127.0.0.1:5000
-
Access the application in your browser at:
http://localhost:6001
After starting the application (either locally or via the deployed URL) and navigating to the home page, you have the option to either register for an account or use the app as a guest. You can upload an existing image or take a new picture using the app's "Turn on camera" button. Once the image is processed, you'll be able to see all human faces in the image be bounded by red boxes.
If you choose to register and log in, you gain additional features like viewing your image recognition history (by clicking the archive button).
- Please avoid uploading excessively large image files, as this could lead to slow processing times. The system's timeout is set to 60 seconds.
- Currently, the supported image file formats are
.jpg
.jpeg
.png
.
To stop the application and remove the containers, execute the following command in your terminal:
docker-compose down
Our project uses pytest
(for the machine-learning-client) and pytest-flask
(for the web-app), with test coverage reported by coverage
. To run these tests locally, follow these steps:
-
Ensure you have Python 3.12 installed on your system.
-
The application also depends on gcc/g++ and cmake. While they are already included in the Dockerfile, and thus not required for Docker-based runs, you will need to install it locally for local testing. If you don't already have these installed on your computer, you may choose your preferred method of installation. Alternatively, you can follow the instructions provided below for a guided setup:
-
Windows:
- Download and install Microsoft Visual Studio (Community) by following the instructions under "installation" section.
- Start the installer and follow the instructions.
- Check the workloads option "Desktop development with C++" and finish the installation.
-
MacOS:
-
Ensure you have Homebrew installed. If not, install it with the following command in the terminal:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
Install GCC/G++ and CMake via Homebrew with the commands:
brew install gcc
brew install cmake
-
Verify the installations by checking the versions:
gcc --version
g++ --version
cmake --version
-
Note: If you cannot retrieve the version information post-installation, ensure that the programs are located in
/usr/local/bin
and that this directory is included in yourPATH
.
-
These installations are necessary because the project utilizes the
face_recognition
package, which depends ondlib
.dlib
, in turn, requires gcc/g++, cmake, and associated libraries. Post-installation, if you still encounter issues withpipenv install
, please kindly follow the error prompts to resolve them. The exact libraries needed can vary based on the machine. We apologize for the inconveniences. -
git clone https://github.com/software-students-fall2023/5-final-project-jungle-gap
cd 5-final-project-jungle-gap
If pipenv
is not installed on your machine, install it using:
pip install pipenv
Install all the necessary dependencies by executing:
pipenv install
Activate the virtual environment using:
pipenv shell
Navigate to either the web-app
or machine-learning-client
subdirectory depending on which component you want to test.
For the web-app:
cd web-app
For the machine-learning-client:
cd machine-learning-client
Run pytest
and view the coverage report:
pipenv run coverage run -m pytest
pipenv run coverage report
To view a detailed HTML report showing lines covered and missed:
pipenv run coverage html
-
Machine-Learning-Client Coverage:
Name Stmts Miss Cover ------------------------------------------ app.py 49 4 92% ml_client.py 15 0 100% tests/__init__.py 0 0 100% tests/test_ml_app.py 32 0 100% ------------------------------------------ TOTAL 96 4 96%
-
Web-App Coverage:
Name Stmts Miss Cover ------------------------------------------- app.py 96 15 84% tests/__init__.py 0 0 100% tests/test_web_app.py 79 1 99% ------------------------------------------- TOTAL 175 16 91%
Thanks for trying out our application. If you have any questions or feedback, feel free to reach out to us via GitHub Discussions for our repository. We appreciate your interest and support!