Skip to content

Instantly share code, notes, and snippets.

View pawankushwah850's full-sized avatar
🎯
Focusing

Pawan kushwah pawankushwah850

🎯
Focusing
View GitHub Profile
@pknowledge
pknowledge / opencv_python_object_detection.py
Created March 31, 2019 22:48
OpenCV Python Tutorial For Beginners - Object Detection and Object Tracking Using HSV Color Space
import cv2
import numpy as np
def nothing(x):
pass
cv2.namedWindow("Tracking")
cv2.createTrackbar("LH", "Tracking", 0, 255, nothing)
cv2.createTrackbar("LS", "Tracking", 0, 255, nothing)
cv2.createTrackbar("LV", "Tracking", 0, 255, nothing)