Views
No views yet
1git clone https://github.com/ranveerphakade/ISL-sign-lang-detection.git
2cd ISL-sign-lang-detection1# On Windows
2python -m venv venv
3venv\Scripts\activate
4
5# On Linux/Mac
6python3 -m venv venv
7source venv/bin/activatepip install -r requirements.txtesp32_code/esp32_cam_oled.ino in Arduino IDEISL-sign-lang-detection/
├── flask_server/
│ ├── app.py # Flask server
│ ├── static/ # Static files
│ ├── templates/ # HTML templates
│ └── test_client.py # Test script
├── esp32_code/
│ └── esp32_cam_oled.ino # ESP32 code
├── dummy_input/ # Test images
├── gesture_model.h5 # Trained model
├── train.py # Training script
├── detect.py # Webcam detection script
├── process.py # Data processing
└── README.md1cd flask_server
2python app.pydummy_input/ directory1cd flask_server
2python test_client.pygit checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)