我使用Emgu CV創建視頻播放器。它的做工精細,具有體積小視頻(< 500KB),但是當我嘗試打大尺寸視頻(> 20MB的),它表明這個錯誤大尺寸視頻EmguCV
An unhandled exception of type 'System.NullReferenceException' occurred in Emgu.CV.dll
Additional information: Unable to create capture from E:\Tugas Akhir\wiman\3a.avi
我在我的項目emgu CV參考,也有opencv_ffmpeg290_64。 DLL和其他opencv DLL在我的項目。 這是代碼的原因這個錯誤路線,
string videodir="E:\Tugas Akhir\wiman\3a.avi";
capture = new Capture(@videodir);
我怎麼能解決這個問題?
你確認你在那個位置該文件?我可以打開超過1GB的avi文件,所以尺寸不應該是問題。 –