├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data-set ├── chalearn │ ├── 249 │ │ └── class.csv │ ├── 010 │ │ └── class.csv │ ├── 020 │ │ └── class.csv │ └── _download │ │ ├── class.csv │ │ ├── class_raw.txt │ │ ├── description.txt │ │ ├── test.txt │ │ ├── train.txt │ │ └── val.txt ├── ledasila │ └── 021 │ │ └── class.csv ├── twentybn │ └── jester-v1-train.csv └── ucf101 │ ├── _classlist.txt │ └── _download │ └── ucfTrainTestlist │ ├── classInd.txt │ ├── testlist01.txt │ ├── testlist02.txt │ ├── testlist03.txt │ ├── trainlist01.txt │ ├── trainlist02.txt │ └── trainlist03.txt ├── datagenerator.py ├── feature.py ├── frame.py ├── image └── readme_folderstructure.jpg ├── livedemo.py ├── model_i3d.py ├── model_lstm.py ├── model_mobile.py ├── opticalflow.py ├── pipeline_i3d.py ├── pipeline_mobile_lstm.py ├── predict.py ├── prepare_chalearn.py ├── timer.py ├── train_i3d.py ├── train_mobile_lstm.py └── videocapture.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/README.md -------------------------------------------------------------------------------- /data-set/chalearn/010/class.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/010/class.csv -------------------------------------------------------------------------------- /data-set/chalearn/020/class.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/020/class.csv -------------------------------------------------------------------------------- /data-set/chalearn/249/class.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/249/class.csv -------------------------------------------------------------------------------- /data-set/chalearn/_download/class.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/_download/class.csv -------------------------------------------------------------------------------- /data-set/chalearn/_download/class_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/_download/class_raw.txt -------------------------------------------------------------------------------- /data-set/chalearn/_download/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/_download/description.txt -------------------------------------------------------------------------------- /data-set/chalearn/_download/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/_download/test.txt -------------------------------------------------------------------------------- /data-set/chalearn/_download/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/_download/train.txt -------------------------------------------------------------------------------- /data-set/chalearn/_download/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/chalearn/_download/val.txt -------------------------------------------------------------------------------- /data-set/ledasila/021/class.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ledasila/021/class.csv -------------------------------------------------------------------------------- /data-set/twentybn/jester-v1-train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/twentybn/jester-v1-train.csv -------------------------------------------------------------------------------- /data-set/ucf101/_classlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_classlist.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/classInd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/classInd.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/testlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/testlist01.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/testlist02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/testlist02.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/testlist03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/testlist03.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/trainlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/trainlist01.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/trainlist02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/trainlist02.txt -------------------------------------------------------------------------------- /data-set/ucf101/_download/ucfTrainTestlist/trainlist03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/data-set/ucf101/_download/ucfTrainTestlist/trainlist03.txt -------------------------------------------------------------------------------- /datagenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/datagenerator.py -------------------------------------------------------------------------------- /feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/feature.py -------------------------------------------------------------------------------- /frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/frame.py -------------------------------------------------------------------------------- /image/readme_folderstructure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/image/readme_folderstructure.jpg -------------------------------------------------------------------------------- /livedemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/livedemo.py -------------------------------------------------------------------------------- /model_i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/model_i3d.py -------------------------------------------------------------------------------- /model_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/model_lstm.py -------------------------------------------------------------------------------- /model_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/model_mobile.py -------------------------------------------------------------------------------- /opticalflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/opticalflow.py -------------------------------------------------------------------------------- /pipeline_i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/pipeline_i3d.py -------------------------------------------------------------------------------- /pipeline_mobile_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/pipeline_mobile_lstm.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/predict.py -------------------------------------------------------------------------------- /prepare_chalearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/prepare_chalearn.py -------------------------------------------------------------------------------- /timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/timer.py -------------------------------------------------------------------------------- /train_i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/train_i3d.py -------------------------------------------------------------------------------- /train_mobile_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/train_mobile_lstm.py -------------------------------------------------------------------------------- /videocapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederikSchorr/sign-language/HEAD/videocapture.py --------------------------------------------------------------------------------