
This dataset contains right-hand landmark coordinates extracted from Arabic Sign Language (ArSL) video recordings using the MediaPipe framework. The dataset is designed for training and evaluating machine learning and deep learning models for ArSL recognition.
Alef (ا), Ba2 (ب), Ta2 (ت), Tha2 (ث), Jim (ج), 7a2 (ح), Kha2 (خ), Dal (د), Thal (ذ), Ra2 (ر), Zayn (ز), Sin (س), Chin (ش), SSad (ص), DDad (ض), TTa2 (ط), TTha2 (ظ), 3ayn (ع), Ghayn (غ), Fa2 (ف), 9af (ق), Kaf (ك), Lam (ل), Mim (م), Noon (ن), Ha2 (ه), Waw (و), Ya2 (ي)
Structure:
Total Columns: 90 (1 label + 89 features)
Structure:
Total Columns: 120 (89 features + 31 binary labels)
MediaPipe hand landmarks: 21 keypoints × (x, y) coordinates
1. Mean Coordinates (18 features): Mean positions of key landmarks
- Pairs: [0,4], [0,8], [0,12], [0,16], [0,20], [4,8], [4,12], [4,16], [4,20]
2. Angular Features (14 features): Orientational relationships between landmarks
- Triplets: [1,2,3], [2,3,4], [0,5,6], [5,6,7], [6,7,8], [0,9,10], [9,10,11], [10,11,12], [0,13,14], [13,14,15], [14,15,16], [0,17,18], [17,18,19], [18,19,20]
3. Distance Features (15 features): Scale-invariant geometric measurements
- Pairs: [0,4], [0,8], [0,12], [0,16], [0,20], [4,8], [4,12], [4,16], [4,20], [8,12], [8,16], [8,20], [12,16], [12,20], [16,20]
# python
import pandas as pd
# Load dataset with categorical labels
df = pd.read_csv('arsl_dataset.csv')
# Or load one-hot encoded version
df_encoded = pd.read_csv('arsl_dataset_encoded.csv')
# Split features and labels
X = df_encoded.iloc[:, :89] # 89 features
y = df_encoded.iloc[:, 89:] # 31 one-hot labels
# Your ML/DL model training here
This dataset is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license.
This dataset was created as part of research on Arabic Sign Language recognition systems to enhance communication accessibility for the Arabic-speaking deaf community.
This dataset has been used in the following research:
1. "Arabic Sign Language Detection using MediaPipe and Machine Learning Techniques." International Conference on Computational Intelligence Approaches and Applications (ICCIAA), April 28-30, 2025. doi: 10.1109/ICCIAA65327.2025.11013250.
2. "Arabic Sign Language Recognition using MediaPipe and Deep Neural Network." International Conference on Optimization and Applications (ICOA), October 16-17, 2025. doi: 10.1109/ICOA66896.2025.11236819.
3. "Comparative Analysis of Machine Learning and Deep Learning Models for Arabic Sign Language Recognition: Performance, Complexity, and Efficiency Evaluation." [in preparation]