├── .idea ├── .gitignore ├── Custom Gesture Control.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CGC_Guide.pdf ├── README.md ├── gui.py ├── main.py ├── pyQt5_designer.ui └── res ├── CGC_gui.PNG ├── WorkingPrinciple_CGC.pdf ├── power_point.gif └── settings.gif /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Custom Gesture Control.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/.idea/Custom Gesture Control.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CGC_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/CGC_Guide.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/README.md -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/gui.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/main.py -------------------------------------------------------------------------------- /pyQt5_designer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/pyQt5_designer.ui -------------------------------------------------------------------------------- /res/CGC_gui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/res/CGC_gui.PNG -------------------------------------------------------------------------------- /res/WorkingPrinciple_CGC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/res/WorkingPrinciple_CGC.pdf -------------------------------------------------------------------------------- /res/power_point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/res/power_point.gif -------------------------------------------------------------------------------- /res/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atharvakale31/Custom_Hand_Gesture_Recognition_and_Control/HEAD/res/settings.gif --------------------------------------------------------------------------------