Python ML Hand Gesture Control GUI 🖐 | Control PC with Gestures (No CV2/No Mediapipe)
Demo : Click Video 👇👇👇 Features: Hand gestures mapped to PC actions (Launch apps, Show desktop, Lock screen) Modern GUI with Dark Mode Works with ML model or Random Simulation Code : import customtkinter as ctk import imageio import threading import numpy as np import pyautogui from PIL import Image, ImageTk import tensorflow as tf import os import random # ===== GUI Settings ===== ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class GestureApp(ctk.CTk): def __init__(self): super().__init__() self.title("Fuzzu ML Hand Gesture Control (No CV2/No Mediapipe)") self.geometry("500x500") self.resizable(False, False) # Camera self.camera = None self.gesture_enabled = False # Title self.la...