資源簡(jiǎn)介
用opencv處理RTSP視頻流,其中視頻流的采集用libvlc庫(kù) VLC播放函數(shù)封裝成一個(gè)類,可以直接使用
代碼片段和文件信息
#include?
#include?“vlcreader.h“
using?namespace?cv;
int?main()
{
????VLCReader?r(“rtsp://192.168.1.10:554/test.h265“);
????int?rtsp_w?=?720?rtsp_h?=?576;
????r.start(rtsp_w?rtsp_h);
????while(1){
????????Mat?frame?=?r.frame();
????????if(!frame.empty()){
????????????imshow(“test“?frame);
????????????int?ch?=?waitKey(20)?&?0xFF;
????????????if?(ch?==?113)
????????????????break;
????????}
????}
????return?0;
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????469??2018-02-01?14:22??rtsp\main.cpp
?????文件???????2114??2018-01-31?16:01??rtsp\vlcreader.cpp
?????文件????????741??2018-02-01?14:07??rtsp\vlcreader.h
?????目錄??????????0??2018-02-01?14:22??rtsp
-----------?---------??----------?-----??----
?????????????????3324????????????????????4
評(píng)論
共有 條評(píng)論