mmerlyn /
asl-translator
Empowering the deaf and speech-impaired with a real-time ASL translator that converts hand gestures into English text using deep learning and computer vision.
57/100 healthLoading repository data…
ShadyNikooei / repository
A real-time hand sign recognition system that allows you to control your computer using gestures. Built with OpenCV and rule-based logic—no machine learning required. Perform custom actions like opening apps, browsing websites, or playing media via simple hand signs.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This project uses real-time hand gesture recognition to detect simple sign language symbols via a webcam. Based on the recognized signs, it performs user-defined actions such as opening applications, playing media, visiting websites, and more.
log.txt)config.jsonUnzip the project files or clone via Git.
python -m venv .venv
Windows (PowerShell):
.venv\Scripts\Activate.ps1
Windows (CMD):
.venv\Scripts\activate.bat
Linux/macOS:
source .venv/bin/activate
pip install -r requirements.txt
python main.py
A webcam window will open showing the live detection. The application will display:
Press ESC to exit the application.
config.json)Customize the actions linked to each sign by editing the config.json file:
{
"A": { "type": "app", "value": "firefox" },
"B": { "type": "app", "value": "notepad.exe" },
"C": { "type": "url", "value": "https://www.python.org" },
"D": { "type": "file", "value": "C:/Users/YourName/Desktop/file.pdf" },
"E": { "type": "message", "value": "Sign E detected" },
"F": { "type": "folder", "value": "C:/Users/YourName/Documents" },
"G": { "type": "audio", "value": "C:/Users/YourName/Music/sample.mp3" },
"H": { "type": "cmd", "value": "dir" },
"ABC": { "type": "cmd", "value": "echo 'Macro ABC triggered'" }
}
Selected from shared topics, language and repository description—not editorial ratings.
mmerlyn /
Empowering the deaf and speech-impaired with a real-time ASL translator that converts hand gestures into English text using deep learning and computer vision.
57/100 healthImaginationGod /
An intelligent eye-controlled cursor system built using Python, OpenCV, and MediaPipe Face Landmarker Task API. This project enables hands-free computer interaction using real-time facial landmark tracking, blink detection, gaze-based cursor movement, and scrolling zones — all using a standard laptop webcam without specialized hardware.
54/100 healthSupported action types:
app: Launch an applicationurl: Open a websitefile: Open a filefolder: Open a directoryaudio: Play audio or media filemessage: Print a custom messagecmd: Execute a system commandsign_language_project/
├── main.py # Main execution script
├── vision.py # Image processing and sign detection
├── actions.py # Action mapping and execution
├── utils.py # Low-level system action handling
├── logger.py # Logging to log.txt
├── config.json # User-defined actions per sign
├── requirements.txt # Python dependencies
└── log.txt # Auto-generated on first run
classify_sign() function in vision.py for more accurate or complex gestures.Shady Nikooei - Computer Vision
Aakarshita-12 /
Real-time web app that translates sign language gestures into text using computer vision and ML. Captures live webcam input, detects hand movements, and predicts gestures accurately. Built with Python and OpenCV, showcasing real-time processing and assistive technology use.
42/100 healthramchandharmuddam /
Real-time hands-free computer control system using webcam, facial landmarks, and hand gestures — built for individuals with upper-limb disabilities.
53/100 healthReal-time hand gesture recognition system for selective mutism, converting signs into text using computer vision and a Random Forest model, enabling hands-free communication.
38/100 healthMythylyxp /
Eye-Controlled Mouse is a computer vision project that enables hands-free cursor control using eye movements and blinks. Built with Python, OpenCV, and Mediapipe, it tracks gaze in real time to move the pointer and perform clicks. Designed for accessibility, HCI, and assistive technology applications.
34/100 health