-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathobject_detection_opencv_hsv.py
55 lines (38 loc) · 1.38 KB
/
object_detection_opencv_hsv.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import cv2
import numpy as np
def nothing(x):
print(x)
# Video capture
cap = cv2.VideoCapture(0)
cv2.namedWindow('Tracking')
cv2.createTrackbar('LH' , 'Tracking',0,255,nothing) # hue - difference colors
cv2.createTrackbar('LS' , 'Tracking',0,255,nothing) # saturation - color brightness
cv2.createTrackbar('LV' , 'Tracking',0,255,nothing) # value - color intensity
cv2.createTrackbar('UH' , 'Tracking',255,255,nothing)
cv2.createTrackbar('US' , 'Tracking',255,255,nothing)
cv2.createTrackbar('UV' , 'Tracking',255,255,nothing)
while True:
# frame = cv2.imread('test_images/smarties.png') #### For Image
_ , frame = cap.read()
# cv2.imshow("frame" , frame)
hsv = cv2.cvtColor(frame , cv2.COLOR_BGR2HSV)
l_h = cv2.getTrackbarPos('LH','Tracking')
l_s = cv2.getTrackbarPos('LS','Tracking')
l_v = cv2.getTrackbarPos('LV','Tracking')
u_h = cv2.getTrackbarPos('UH','Tracking')
u_s = cv2.getTrackbarPos('US','Tracking')
u_v = cv2.getTrackbarPos('UV','Tracking')
l_b = np.array([l_h,l_s,l_v,])
u_b = np.array([u_h,u_s,u_v])
mask = cv2.inRange(hsv , l_b , u_b)
res = cv2.bitwise_and(frame , frame , mask=mask)
# for blue ball detection
# l_b = [85,21,224]
# u_b = [139,255,255]
cv2.imshow('mask' , mask)
cv2.imshow('res' , res)
key = cv2.waitKey(1)
if key == 27:
break
cap.release()
cv2.destroyAllWindows()