0
import cv2
import urllib
import numpy as np
stream=urllib.urlopen('http://192.168.1.5:8080/frame.mjpg')
bytes=''
while True:
bytes+=stream.read(1024)
a = bytes.find('\xff\xd8')
b = bytes.find('\xff\xd9')
if a!=-1 and b!=-1:
jpg = bytes[a:b+2]
bytes= bytes[b+2:]
i = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8),cv2.CV_LOAD_IMAGE_COLOR)
cv2.imshow('i',i)
if cv2.waitKey(1) ==27:
exit(0)
該代碼也沒有拋出任何錯誤,我在IPWebcam中設置了無身份驗證。 它投擲的錯誤連接被拒絕如何通過打開的cv從IP攝像頭訪問無線攝像頭?