使用python + opencv无法访问IP CAM flux(tp-link NC250)

时间:2017-04-09 18:58:26

标签: python opencv

我无法使用python + opencv访问IP CAM flux。 经测试的opencv教程:无连接(灰框)。 用zoneminder测试相机:有效 用网络摄像头测试代码:有效 使用型号进行测试:TPLINK NC200和NC250,无法正常工作

相机型号:TP-LINK,NC-250 地址为通量(mjepg H264):“http://admin:< 密码编码基础64 > @ 192.168.0.69:8080 / stream / video / mjpeg”

代码:

def Camera2(self, evt):
  while(True):
    try :
        test2 = "http://admin:<*password coded base 64*>@192.168.0.69:8080/stream/video/mjpeg"
        cap = cv2.VideoCapture('test2')

    except IOError:
        dlg = wx.MessageDialog(self,u"Pas de connection avec la caméra..",
                               u"Erreur connection", style = wx.OK)
        retour = dlg.ShowModal()
        dlg.Destroy()

    ret, frame = cap.read()

    # ouverture en volant
    img = cv2.imread(frame, -1)

    #img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
    cv2.namedWindow('Cam2', cv2.WINDOW_NORMAL)
    cv2.resizeWindow('Cam2', config.largeur, config.hauteur)
    font = cv2.FONT_HERSHEY_SIMPLEX
    text = str(u"Camera 2")
    cv2.putText(img, text, (5,40), font, 1, (255,255,255), 2, cv2.LINE_AA)
    cv2.imshow('Cam2',img)
    #cv2.MoveWindow('Cam', 200, 600)

    if cv2.waitKey(1) & 0xFF == ord('q'):
        print 'break imshow'
        cv2.destroyAllWindows('Cam2')
        break

    # rafraichissement
    time.sleep(config.fps)

print 'sorti de Cam2 !'

我的代码,磁通编解码器或摄像机的硬件是否有问题?

有人用另一种型号测试过吗?

1 个答案:

答案 0 :(得分:0)

我使用 python-vlc 库解决了辅助功能,并将链接指向快照,返回jpg文件。