for this stream:
是否有一个类可以捕获流进行操作?
我发现的是有关如何制作客户端服务器或从计算机连接的摄像头读取的教程。
更新: 看起来很有希望。 试图打开this again失败,所以我跟着asx说:
<asx version="3.0">
<!-- GMEmbed -->
<title>CastUP: Ayalon</title>
<entryref href="http://switch3.castup.net/cunet/gm.asp?format=wm&s=4A59334AD43141A7BFD73D7CE6B71560&ci=15369&ak=35143679&ClipMediaID=21329&authi=&autht=&dr=" />
</asx>
所以尝试this也没有打开(在cap.isOpen == false)。
有什么建议吗?
来源:
Mat frame;
VideoCapture Ayalon("http://switch3.castup.net/cunet/gm.asp?format=wm&s=4A59334AD43141A7BFD73D7CE6B71560&ci=15369&ak=35143679&ClipMediaID=21329&authi=&autht=&dr=");
int delay = 1000/Ayalon.get(CV_CAP_PROP_FPS);// (1 second / fps) = delay between frames
bool stop(false);
if (!Ayalon.isOpened())
return 1;
namedWindow("ayalon Stream");
while (!stop) {
if (!Ayalon.read(frame))
break;
imshow("ayalon Stream",frame);
if (waitKey(delay) >0 )
stop = true;
}
Ayalon.release();
waitKey(7000);
return 1;