如何从网络摄像头获取图像并将图像存储在openCV中
cvcam = cvCreateFileCapture("http://10.17.32.141.jpg");
cvNamedWindow("Video",1);
do{
image = cvQueryFrame(cvcam);
cvShowImage("Video",image);
你好..我尝试从网络摄像机获取图像并尝试存储它。我正在使用上面的命令,但它不起作用。有人帮助我:)
cvcam = cvCreateFileCapture("http://10.17.32.141.jpg");
cvNamedWindow("Video",1);
do{
image = cvQueryFrame(cvcam);
cvShowImage("Video",image);
Hello..I try to get the images from ip camera and try to store it. I'm using the command above but it didn't work. somebody help me:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IP 地址不正确。 “10.17.32.141”是地址,后面应该跟一个斜杠和服务器上的一些(文件)路径。 “.jpg”部分是文件扩展名,应该是路径的一部分,而不是服务器的一部分。
The ip address is incorrect. "10.17.32.141" is the address, which should be followed by a slash and some (file)path on the server. The ".jpg" part is a file extension and should be part of the path, not the server.