Ask Your Question

Dark2013's profile - activity

2013-12-02 08:27:06 -0600 commented answer Problem in opening the video files using Open CV

And how you resloved this problem?? Now i have same error with same output listing in VS2010.... it's my question http://answers.opencv.org/question/24843/dont-work-cvvideocapture/ Thanks!

2013-12-02 06:05:54 -0600 received badge  Organizer (source)
2013-12-02 04:36:50 -0600 asked a question Don't work cv::VideoCapture

Hi! I have some trouble with using this object....

Some small example:

/*test slot*/ void playCapture(const QString &path)
{
cv::VideoCapture capture( path.toStdString() );
if( !capture.isOpened() ) return;

....code......
}

Visual Studio 2010 write me in output:

Loaded 'D:\Projects\opencv\testOCV3\Win32\Debug\opencv_ffmpeg247.dll' Binary was not build with debug information.
Unloaded 'D:\Projects\opencv\testOCV3\Win32\Debug\opencv_ffmpeg247.dll'

What's problem??

Thanks!!!