Skip to content

Instantly share code, notes, and snippets.

@c0d3x27
Last active March 28, 2021 13:58
Show Gist options
  • Save c0d3x27/873a668b2e685a481c97348d4f24ab64 to your computer and use it in GitHub Desktop.
Save c0d3x27/873a668b2e685a481c97348d4f24ab64 to your computer and use it in GitHub Desktop.
Make Your Pc Notify Your Phone Whenever There is Movement Around it
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)
if cv2.waitKey(10) == ord('q'):
break
cv2.imshow('Alert! Something is moving', frame1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment