Merge pull request #5301 from vtsatskin:patch-1

This commit is contained in:
Vadim Pisarevsky 2015-09-09 10:39:52 +00:00
commit 79100efec6

View File

@ -62,7 +62,7 @@ while(1):
upper_blue = np.array([130,255,255])
# Threshold the HSV image to get only blue colors
mask = cv2.inRange(hsv, lower_green, upper_green)
mask = cv2.inRange(hsv, lower_blue, upper_blue)
# Bitwise-AND mask and original image
res = cv2.bitwise_and(frame,frame, mask= mask)