├── .gitignore ├── LICENSE ├── README.md ├── analysis ├── analysis.py ├── performance.py ├── yolo_analysis.py └── yolo_performance.py ├── data ├── gt │ ├── gt_pos.npy │ └── gt_prob.npy ├── pr │ ├── pr_pos.npy │ └── pr_prob.npy ├── sample.jpg └── yolo │ ├── pr_pos_per_yolo.npy │ ├── pr_pos_yolo.npy │ ├── pr_prob_per_yolo.npy │ └── pr_prob_yolo.npy ├── dataset ├── README.md ├── image_names │ ├── test │ │ ├── SingleEightTest.txt │ │ ├── SingleFiveTest.txt │ │ ├── SingleFourTest.txt │ │ ├── SingleOneTest.txt │ │ ├── SingleSevenTest.txt │ │ ├── SingleSixTest.txt │ │ ├── SingleThreeTest.txt │ │ └── SingleTwoTest.txt │ ├── train │ │ ├── SingleEight.txt │ │ ├── SingleFive.txt │ │ ├── SingleFour.txt │ │ ├── SingleOne.txt │ │ ├── SingleSeven.txt │ │ ├── SingleSix.txt │ │ ├── SingleThree.txt │ │ └── SingleTwo.txt │ └── valid │ │ ├── SingleEightValid.txt │ │ ├── SingleFiveValid.txt │ │ ├── SingleFourValid.txt │ │ ├── SingleOneValid.txt │ │ ├── SingleSevenValid.txt │ │ ├── SingleSixValid.txt │ │ ├── SingleThreeValid.txt │ │ └── SingleTwoValid.txt ├── label │ ├── SingleEight.txt │ ├── SingleFive.txt │ ├── SingleFour.txt │ ├── SingleOne.txt │ ├── SingleSeven.txt │ ├── SingleSix.txt │ ├── SingleThree.txt │ └── SingleTwo.txt └── load_dataset.py ├── generator.py ├── hand_detector ├── detector.py ├── solo │ ├── README.md │ ├── generator.py │ ├── predict.py │ ├── preprocess │ │ ├── augmentation.py │ │ ├── solo_flag.py │ │ └── solo_labelgen.py │ ├── solo_net.py │ ├── train.py │ └── visualize.py └── yolo │ ├── darknet.py │ ├── generator.py │ ├── history.py │ ├── predict.py │ ├── preprocess │ ├── augmentation.py │ ├── labelgen.py │ └── yolo_flag.py │ ├── train.py │ └── utils │ ├── info.py │ └── utils.py ├── net └── network.py ├── predict.py ├── preprocess ├── augmentation.py ├── data_generator.py ├── finder.py ├── finger_flag.py └── iou.py ├── real-time.py ├── train.py ├── unified_detector.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/README.md -------------------------------------------------------------------------------- /analysis/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/analysis/analysis.py -------------------------------------------------------------------------------- /analysis/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/analysis/performance.py -------------------------------------------------------------------------------- /analysis/yolo_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/analysis/yolo_analysis.py -------------------------------------------------------------------------------- /analysis/yolo_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/analysis/yolo_performance.py -------------------------------------------------------------------------------- /data/gt/gt_pos.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/gt/gt_pos.npy -------------------------------------------------------------------------------- /data/gt/gt_prob.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/gt/gt_prob.npy -------------------------------------------------------------------------------- /data/pr/pr_pos.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/pr/pr_pos.npy -------------------------------------------------------------------------------- /data/pr/pr_prob.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/pr/pr_prob.npy -------------------------------------------------------------------------------- /data/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/sample.jpg -------------------------------------------------------------------------------- /data/yolo/pr_pos_per_yolo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/yolo/pr_pos_per_yolo.npy -------------------------------------------------------------------------------- /data/yolo/pr_pos_yolo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/yolo/pr_pos_yolo.npy -------------------------------------------------------------------------------- /data/yolo/pr_prob_per_yolo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/yolo/pr_prob_per_yolo.npy -------------------------------------------------------------------------------- /data/yolo/pr_prob_yolo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/data/yolo/pr_prob_yolo.npy -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/README.md -------------------------------------------------------------------------------- /dataset/image_names/test/SingleEightTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleEightTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleFiveTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleFiveTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleFourTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleFourTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleOneTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleOneTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleSevenTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleSevenTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleSixTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleSixTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleThreeTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleThreeTest.txt -------------------------------------------------------------------------------- /dataset/image_names/test/SingleTwoTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/test/SingleTwoTest.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleEight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleEight.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleFive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleFive.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleFour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleFour.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleOne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleOne.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleSeven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleSeven.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleSix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleSix.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleThree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleThree.txt -------------------------------------------------------------------------------- /dataset/image_names/train/SingleTwo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/train/SingleTwo.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleEightValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleEightValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleFiveValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleFiveValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleFourValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleFourValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleOneValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleOneValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleSevenValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleSevenValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleSixValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleSixValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleThreeValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleThreeValid.txt -------------------------------------------------------------------------------- /dataset/image_names/valid/SingleTwoValid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/image_names/valid/SingleTwoValid.txt -------------------------------------------------------------------------------- /dataset/label/SingleEight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleEight.txt -------------------------------------------------------------------------------- /dataset/label/SingleFive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleFive.txt -------------------------------------------------------------------------------- /dataset/label/SingleFour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleFour.txt -------------------------------------------------------------------------------- /dataset/label/SingleOne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleOne.txt -------------------------------------------------------------------------------- /dataset/label/SingleSeven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleSeven.txt -------------------------------------------------------------------------------- /dataset/label/SingleSix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleSix.txt -------------------------------------------------------------------------------- /dataset/label/SingleThree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleThree.txt -------------------------------------------------------------------------------- /dataset/label/SingleTwo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/label/SingleTwo.txt -------------------------------------------------------------------------------- /dataset/load_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/dataset/load_dataset.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/generator.py -------------------------------------------------------------------------------- /hand_detector/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/detector.py -------------------------------------------------------------------------------- /hand_detector/solo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/README.md -------------------------------------------------------------------------------- /hand_detector/solo/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/generator.py -------------------------------------------------------------------------------- /hand_detector/solo/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/predict.py -------------------------------------------------------------------------------- /hand_detector/solo/preprocess/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/preprocess/augmentation.py -------------------------------------------------------------------------------- /hand_detector/solo/preprocess/solo_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/preprocess/solo_flag.py -------------------------------------------------------------------------------- /hand_detector/solo/preprocess/solo_labelgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/preprocess/solo_labelgen.py -------------------------------------------------------------------------------- /hand_detector/solo/solo_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/solo_net.py -------------------------------------------------------------------------------- /hand_detector/solo/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/train.py -------------------------------------------------------------------------------- /hand_detector/solo/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/solo/visualize.py -------------------------------------------------------------------------------- /hand_detector/yolo/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/darknet.py -------------------------------------------------------------------------------- /hand_detector/yolo/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/generator.py -------------------------------------------------------------------------------- /hand_detector/yolo/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/history.py -------------------------------------------------------------------------------- /hand_detector/yolo/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/predict.py -------------------------------------------------------------------------------- /hand_detector/yolo/preprocess/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/preprocess/augmentation.py -------------------------------------------------------------------------------- /hand_detector/yolo/preprocess/labelgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/preprocess/labelgen.py -------------------------------------------------------------------------------- /hand_detector/yolo/preprocess/yolo_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/preprocess/yolo_flag.py -------------------------------------------------------------------------------- /hand_detector/yolo/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/train.py -------------------------------------------------------------------------------- /hand_detector/yolo/utils/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/utils/info.py -------------------------------------------------------------------------------- /hand_detector/yolo/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/hand_detector/yolo/utils/utils.py -------------------------------------------------------------------------------- /net/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/net/network.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/predict.py -------------------------------------------------------------------------------- /preprocess/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/preprocess/augmentation.py -------------------------------------------------------------------------------- /preprocess/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/preprocess/data_generator.py -------------------------------------------------------------------------------- /preprocess/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/preprocess/finder.py -------------------------------------------------------------------------------- /preprocess/finger_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/preprocess/finger_flag.py -------------------------------------------------------------------------------- /preprocess/iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/preprocess/iou.py -------------------------------------------------------------------------------- /real-time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/real-time.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/train.py -------------------------------------------------------------------------------- /unified_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/unified_detector.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmudulAlam/Unified-Gesture-and-Fingertip-Detection/HEAD/visualize.py --------------------------------------------------------------------------------