- This is the Backend code for a Video Meeting Application, in which user can enable ASL (American Sign Language) Detection functionality (characters recognition from hand gestures).
- You can test the application at: https://aslmeeting.ticklab.site/
- Create python virtual environment and activate that environment
git clone https://github.com/baotram153/ASL-Detection.git
cd ASL-Detection
python -m venv env
./env/Scripts/activate- Install required packages
pip install -r requirements.txt- Run the Backend server
gunicorn -w 4 -k uvicorn.workers.UvicornWorker server:app- The number of workers should ideally be your number of cpu cores x2+1