Built a gesture-controlled calculator a while back using MediaPipe. Extracted the detection logic into a standalone library so anyone can add gesture recognition to their project without touching CV code.
from mp_gesture_lib import GestureDetector
detector = GestureDetector() # bundled model, zero config
result = detector.detect(frame) # pass any BGR webcam frame
print(result.gesture, result.confidence)
An open-source Python library that wraps MediaPipe gesture recognition into an ultra-simple API. Detect hand gestures from webcam frames in just 3 lines of code! Supports finger counting (1-10), arithmetic gestures (plus, minus, multiply, divide, equal, clear), and custom ML models. Comes with a bundled gesture model out of the box with zero external setup. Fully compatible with all MediaPipe versions, from legacy to the latest 0.10.35+ release.
I ve always found it a bit painful to debug deeply nested JSON files, so I decided to build my own visualizer. Instead of just a boring list, I wanted something more interactive and visual.
I call it JSON Tree Viewer.
Live Demo: https://debabratasaha-dev.github... GitHub Repo: https://github.com/debabratasaha...