Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richayadav03/sign-language-detection-and-conversion-to-text-and-speech
This Python-based project employs deep learning (LSTM) and computer vision to detect sign language gestures, converting them into text and speech. It enhances communication for the hearing-impaired.
https://github.com/richayadav03/sign-language-detection-and-conversion-to-text-and-speech
gtts lstm opencv python tensorflow
Last synced: 17 days ago
JSON representation
This Python-based project employs deep learning (LSTM) and computer vision to detect sign language gestures, converting them into text and speech. It enhances communication for the hearing-impaired.
- Host: GitHub
- URL: https://github.com/richayadav03/sign-language-detection-and-conversion-to-text-and-speech
- Owner: richayadav03
- Created: 2024-09-17T07:14:06.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T07:16:31.000Z (2 months ago)
- Last Synced: 2024-10-10T17:41:48.374Z (about 1 month ago)
- Topics: gtts, lstm, opencv, python, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 1.67 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sign Language Detection and Conversion to Text and Speech
This project is a real-time sign language detection and conversion system implemented in Python, leveraging deep learning (LSTM) models and computer vision techniques. It allows for the detection of sign language gestures from live video frames, converting them into text and then into speech using natural language processing libraries. This solution aims to enhance communication accessibility for the hearing-impaired community.
## Table of Contents
- [Introduction](#introduction)
- [Features](#features)
- [Requirements](#requirements)## Introduction
Sign language is a crucial means of communication for the hearing-impaired. This project offers a technological solution to bridge the communication gap by detecting and interpreting sign language gestures in real-time. It combines deep learning techniques with computer vision and natural language processing to make communication more accessible.
## Features
- Real-time sign language detection using LSTM deep learning model.
- Conversion of detected signs into text.
- Speech synthesis of the interpreted text using gTTS library.
- User-friendly and accessible interface.
- Supports multiple sign languages and gestures.## Requirements
To run this project, you need the following dependencies:
- Python
- OpenCV (cv2) library
- TensorFlow or PyTorch (for LSTM model)
- gTTS (Google Text-to-Speech) libraryYou can install the required libraries using pip:
```bash
pip install opencv-python
pip install tensorflow
pip install torch
pip install gTTS
```