Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Invisibility Cloak Python Script #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ Description
- tictactoe <br />
A cli-based tictactoe game to play with the computer. <br/>
[Rounak Vyas](http://www.github.com/itsron717)

- invisiblecloak <br />
Captures a scenary and then cloaks any red cloth or red foreground. Made with OpenCV and numpy. <br/>
[Akash Ramjyothi](https://github.com/Akash-Ramjyothi)
6 changes: 6 additions & 0 deletions scripts/invisiblecloak/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Invisibility-Cloak

Captures a scenary and then cloaks any red cloth or red foreground. Made with OpenCV and numpy.

## Usage
`python main.py`
37 changes: 37 additions & 0 deletions scripts/invisiblecloak/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import cv2
import numpy as np
import time

cap = cv2.VideoCapture(0)
time.sleep(3)
background = 0
for i in range(30):
ret, background = cap.read()

background = np.flip(background, axis=1)

while (cap.isOpened()):
ret, img = cap.read()

img = np.flip(img, axis=1)
hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
value = (35, 35)
blurred = cv2.GaussianBlur(hsv, value, 0)
lower_red = np.array([0,120,70])
upper_red = np.array([10, 255, 255])
mask1 = cv2.inRange(hsv, lower_red, upper_red)

lower_red = np.array([170,120,70])
upper_red = np.array([180, 255, 255])
mask2 = cv2.inRange(hsv, lower_red, upper_red)

mask = mask1 + mask2
mask = cv2.morphologyEx(mask, cv2.MORPH_OPEN, np.ones((5, 5), np.uint8))

img[np.where(mask == 255)] = background[np.where(mask == 255)]
cv2.imshow('Display', img)
k = cv2.waitKey(10)
if k == ord('q'):
break
cap.release()
cv2.destroyAllWindows()