OpenCV: How to capture frames from an Ethernet camera

后端 未结 3 2005
渐次进展
渐次进展 2020-12-30 11:13

I have earlier programmed USB webcam, where the sole aim is to get the live frames from the camera and display in a window. I used cvCaptureFromCAM for that purpose, which

3条回答
  •  伪装坚强ぢ
    2020-12-30 11:49

    You will not be able to access images on the camera if it doesn't have a web server running (check its doco). try typing this at a command prompt:

    telnet 192.169.2.3 80
    

    If telnet times out, your camera is not running a server on the default port 80.

    Also see this question:C++ code Capturing image from IP / Ethernet Cameras (AXIS Cam)

提交回复
热议问题