Skip to content

Instantly share code, notes, and snippets.

View enco77's full-sized avatar

Shakhboz enco77

View GitHub Profile
@enco77
enco77 / opencv_python_object_detection.py
Created August 3, 2020 12:46 — forked from pknowledge/opencv_python_object_detection.py
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)