-
Notifications
You must be signed in to change notification settings - Fork 11
/
invisible_cloak.py
45 lines (34 loc) · 1.19 KB
/
invisible_cloak.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
import cv2
import numpy as np
cap = cv2.VideoCapture(0)
back = cv2.imread('./image.jpg')
while cap.isOpened():
# take each frame
ret, frame = cap.read()
if ret:
# how do we convert rgb to hsv?
hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)
# cv2.imshow("hsv", hsv)
# how to get hsv value?
# lower: hue - 10, 100, 100, higher: h+10, 255, 255
red = np.uint8([[[0,0,255]]]) # bgr value of red
hsv_red = cv2.cvtColor(red, cv2.COLOR_BGR2HSV)
# get hsv value of red from bgr
# print(hsv_red)
# threshold the hsv value to get only red colors
l_red = np.array([0, 100, 100])
u_red = np.array([10, 255, 255])
mask = cv2.inRange(hsv, l_red, u_red)
# cv2.imshow("mask", mask)
# all things red
part1 = cv2.bitwise_and(back, back, mask=mask)
# cv2.imshow("part1", part1)
mask = cv2.bitwise_not(mask)
# part 2 is all things not red
part2 = cv2.bitwise_and(frame, frame, mask=mask)
# cv2.imshow("mask", part2)
cv2.imshow("cloak", part1 + part2)
if cv2.waitKey(5) == ord('q'):
break
cap.release()
cv2.destroyAllWindows()