├── .gitignore ├── Agreement.pdf ├── LD-ConGR-CVPR2022.pdf ├── README.md ├── eval_jaccard ├── con_score.py ├── jaccard_index.py ├── test_labels.txt └── tools.py ├── imgs ├── compare_table.png ├── data_statistics.png ├── gestures.png └── results.png └── resnext-mmtm ├── README.md ├── annotation_hciGesture ├── dataV3 │ ├── classIndAll.txt │ ├── classIndAllbutNone.txt │ ├── classIndBinary.txt │ ├── hciall.json │ ├── hciall_but_None.json │ ├── hciall_but_None_keyframes.json │ ├── hcibinary.json │ ├── trainlistall.txt │ ├── trainlistall_but_None.txt │ ├── trainlistbinary.txt │ ├── vallistall.txt │ ├── vallistall_but_None.txt │ └── vallistbinary.txt └── expand_crop_regions.json ├── dataset.py ├── datasets ├── hcigesture.py └── hcigesture_online.py ├── main.py ├── mean.py ├── model.py ├── models ├── mmtnet.py └── resnext.py ├── offline_test.py ├── online_test_wo_detector_my_all.py ├── opts.py ├── sh ├── hci_prepare.sh ├── run_clf_hci_test.sh ├── run_clf_hci_train.sh └── run_online_hcigesture_wo_detector.sh ├── spatial_transforms.py ├── target_transforms.py ├── temporal_transforms.py ├── train.py ├── utils.py ├── utils ├── hci_json.py └── hci_prepare.py └── validation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/.gitignore -------------------------------------------------------------------------------- /Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/Agreement.pdf -------------------------------------------------------------------------------- /LD-ConGR-CVPR2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/LD-ConGR-CVPR2022.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/README.md -------------------------------------------------------------------------------- /eval_jaccard/con_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/eval_jaccard/con_score.py -------------------------------------------------------------------------------- /eval_jaccard/jaccard_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/eval_jaccard/jaccard_index.py -------------------------------------------------------------------------------- /eval_jaccard/test_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/eval_jaccard/test_labels.txt -------------------------------------------------------------------------------- /eval_jaccard/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/eval_jaccard/tools.py -------------------------------------------------------------------------------- /imgs/compare_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/imgs/compare_table.png -------------------------------------------------------------------------------- /imgs/data_statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/imgs/data_statistics.png -------------------------------------------------------------------------------- /imgs/gestures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/imgs/gestures.png -------------------------------------------------------------------------------- /imgs/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/imgs/results.png -------------------------------------------------------------------------------- /resnext-mmtm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/README.md -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/classIndAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/classIndAll.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/classIndAllbutNone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/classIndAllbutNone.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/classIndBinary.txt: -------------------------------------------------------------------------------- 1 | 1 none 2 | 2 gesture -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/hciall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/hciall.json -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/hciall_but_None.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/hciall_but_None.json -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/hciall_but_None_keyframes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/hciall_but_None_keyframes.json -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/hcibinary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/hcibinary.json -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/trainlistall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/trainlistall.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/trainlistall_but_None.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/trainlistall_but_None.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/trainlistbinary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/trainlistbinary.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/vallistall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/vallistall.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/vallistall_but_None.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/vallistall_but_None.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/dataV3/vallistbinary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/dataV3/vallistbinary.txt -------------------------------------------------------------------------------- /resnext-mmtm/annotation_hciGesture/expand_crop_regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/annotation_hciGesture/expand_crop_regions.json -------------------------------------------------------------------------------- /resnext-mmtm/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/dataset.py -------------------------------------------------------------------------------- /resnext-mmtm/datasets/hcigesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/datasets/hcigesture.py -------------------------------------------------------------------------------- /resnext-mmtm/datasets/hcigesture_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/datasets/hcigesture_online.py -------------------------------------------------------------------------------- /resnext-mmtm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/main.py -------------------------------------------------------------------------------- /resnext-mmtm/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/mean.py -------------------------------------------------------------------------------- /resnext-mmtm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/model.py -------------------------------------------------------------------------------- /resnext-mmtm/models/mmtnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/models/mmtnet.py -------------------------------------------------------------------------------- /resnext-mmtm/models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/models/resnext.py -------------------------------------------------------------------------------- /resnext-mmtm/offline_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/offline_test.py -------------------------------------------------------------------------------- /resnext-mmtm/online_test_wo_detector_my_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/online_test_wo_detector_my_all.py -------------------------------------------------------------------------------- /resnext-mmtm/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/opts.py -------------------------------------------------------------------------------- /resnext-mmtm/sh/hci_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/sh/hci_prepare.sh -------------------------------------------------------------------------------- /resnext-mmtm/sh/run_clf_hci_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/sh/run_clf_hci_test.sh -------------------------------------------------------------------------------- /resnext-mmtm/sh/run_clf_hci_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/sh/run_clf_hci_train.sh -------------------------------------------------------------------------------- /resnext-mmtm/sh/run_online_hcigesture_wo_detector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/sh/run_online_hcigesture_wo_detector.sh -------------------------------------------------------------------------------- /resnext-mmtm/spatial_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/spatial_transforms.py -------------------------------------------------------------------------------- /resnext-mmtm/target_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/target_transforms.py -------------------------------------------------------------------------------- /resnext-mmtm/temporal_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/temporal_transforms.py -------------------------------------------------------------------------------- /resnext-mmtm/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/train.py -------------------------------------------------------------------------------- /resnext-mmtm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/utils.py -------------------------------------------------------------------------------- /resnext-mmtm/utils/hci_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/utils/hci_json.py -------------------------------------------------------------------------------- /resnext-mmtm/utils/hci_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/utils/hci_prepare.py -------------------------------------------------------------------------------- /resnext-mmtm/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diananini/LD-ConGR-CVPR2022/HEAD/resnext-mmtm/validation.py --------------------------------------------------------------------------------