Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ayan-biswas0412 committed Apr 24, 2020
1 parent 33ec4d3 commit 89d38eb
Show file tree
Hide file tree
Showing 15 changed files with 2,396 additions and 0 deletions.
13 changes: 13 additions & 0 deletions connect_device.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import cv2
import numpy as np
url = raw_input("Please enter the address of the IP webcam : ")
finalurl = "http://"+url+"/video"
cap = cv2.VideoCapture(finalurl)
while(True):
ret, frame = cap.read()
if frame is not None:
cv2.imshow('frame',frame)
q = cv2.waitKey(1)
if q == ord("q"):
break
cv2.destroyAllWindows()
Binary file added mobilenet_ssd/MobileNetSSD_deploy.caffemodel
Binary file not shown.
Loading

0 comments on commit 89d38eb

Please sign in to comment.