-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColorDetect_Red.py
43 lines (40 loc) · 1.49 KB
/
ColorDetect_Red.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
# import the necessary packages
from picamera.array import PiRGBArray
from picamera import PiCamera
import time
import cv2
import numpy as np
# initialize the camera and grab a reference to the raw camera capture
camera = PiCamera()
camera.resolution = (640, 480)
camera.framerate = 32
rawCapture = PiRGBArray(camera, size=(640, 480))
# allow the camera to warmup
time.sleep(0.1)
# define the range of red
lower_red_0 = np.array([0, 70, 0])
upper_red_0 = np.array([5, 255, 255])
lower_red_1 = np.array([175, 70, 0])
upper_red_1 = np.array([180, 255, 255])
# capture frames from the camera
for frame in camera.capture_continuous(rawCapture, format="bgr", use_video_port=True):
# grab the raw NumPy array representing the image, then initialize the timestamp
# and occupied/unoccupied text
image = frame.array
hsv_img = cv2.cvtColor(image, cv2.COLOR_BGR2HSV)
red_mask0 = cv2.inRange(hsv_img, lower_red_0, upper_red_0)
red_mask1 = cv2.inRange(hsv_img, lower_red_1, upper_red_1)
red_mask = cv2.bitwise_or(red_mask0, red_mask1)
# show the frame
cv2.imshow("Frame", image)
cv2.imshow("Red Detection", red_mask)
key = cv2.waitKey(1) & 0xFF
# clear the stream in preparation for the next frame
rawCapture.truncate(0)
# if the `q` key was pressed, break from the loop
if key == ord("q"):
break
camera.close()
time.sleep(1.5)
cv2.destroyWindow("Frame")
cv2.destroyWindow("Red Detection")