Posts

Showing posts from December, 2021

LED Light Intensity Control Using Bolt IoT & Hand Gestures(Computer Vision📷)

Image
Introduction  :     I am Subhendu Choudhury Robotics and Automation Engineering student at THE NEOTIA UNIVERSITY. I  Build a Bolt IoT Project on light intensity control using hand gestures. In this video, you can see what I build. Project Explanation  :   Diagram  :-                   Code( Language python):               Hand_tracking_module.py   : import cv2 import mediapipe as mp import time import math import numpy as np class handDetector ():     def __init__ ( self , mode = False , maxHands = 2 , detectionCon = 0.5 , trackCon = 0.5 ):         self . mode = mode         self . maxHands = maxHands         self . detectionCon = detec findHands ( self , img , draw = True ) tionCon         self . trackCon = trackCon         self . mpHands =...