我有一台Mobotix c25相机。它是一个IP摄像头,我以这样的方式访问它的流:
Mat frame;
cv::VideoCapture vcap;
if(!vcap.open("http://(IP_address)/cgi-bin/faststream.jpg?stream=full&fps=25.0&data=v.mjpg")){
cout<<"Camera not found"<<endl;
}
正如你所看到的,我选择了每秒25帧。我想救他们中的每一个。我是这样做的:
while
我使用的是DIgoo (DG-MIQ) ip摄像机。我想在windows form c#中使用它。但是它不是基于摄像头的ip连接的,我不知道我的digoo摄像头的端口是什么。下面是我的代码
public partial class vstream : Form
{
MJPEGStream stream;
public vstream()
{
InitializeComponent();
stream = new MJPEGStream(" http://192.100.0.106");
st