Debabrata Saha

Debabrata Saha

Simply, a Builder and Developer

Badges

Tastemaker
Tastemaker
Gone streaking
Gone streaking

Maker History

  • MP Gesture Lib
    MP Gesture LibDetect hand gestures from a webcam in 3 lines of Python
    May 2026
  • 🎉
    Joined Product HuntMay 19th, 2026

Forums

1mo ago

I built a pip package so that you can detect hand gestures in 3 lines of Python

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)

What it detects out of the box:

  • Finger count 1 10 (geometry-based, no ML)

  • Math ops: plus, minus, multiply, divide, equal, clear (ML model, bundled)

  • Two-hand rules for plus/multiply (landmark geometry)

  • Returns "unknown" cleanly when nothing matches

1mo ago

MP Gesture Lib - Detect hand gestures from a webcam in 3 lines of Python

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.

2mo ago

Tired of messy JSON? I made a tool that visualizes your data as both a tree and a pannable graph.

Hey everyone!

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...

View more