-
-
Save simrit1/84b153084bdc8c1f2767822e29cd85a2 to your computer and use it in GitHub Desktop.
Make Your Pc Notify Your Phone Whenever There is Movement Around it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
guardcam = cv2.VideoCapture(0) | |
while guardcam.isOpened(): | |
ret, frame1 = guardcam.read() | |
ret, frame2 = guardcam.read() | |
diff = cv2.absdiff(frame1, frame2) | |
gray = cv2.cvtColor(diff, cv2.COLOR_RGB2GRAY) | |
blur = cv2.GaussianBlur(gray, (5, 5), 0) | |
_, thresh = cv2.threshold(blur, 20, 255, cv2.THRESH_BINARY) | |
dilated = cv2.dilate(thresh, None, iterations=3) | |
contours, _ = cv2.findContours(dilated, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) | |
for c in contours: | |
if cv2.contourArea(c) < 5000: | |
continue | |
x, y, w, h = cv2.boundingRect(c) | |
cv2.rectangle(frame1, (x, y), (x+w, y+h), (0, 255, 0), 2) | |
telegram #this is the name of my alias | |
if cv2.waitKey(10) == ord('q'): | |
break | |
cv2.imshow('bleepling Cam', frame1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment