Ask Your Question

bernardOCV's profile - activity

2013-06-11 09:00:55 -0600 answered a question VideoCapture Release Mode

Thamks for your answer, Steven Newby OpenCV, I don't remember if I did the mistake you are evoking. I decided to download the OpenCV 2.4.5. This pbm is OK with this version

BUT, I have a new concern: release mode works fine in the test soft and the main soft.

In the debug version, I get the compiler error: "c:\program files\opencv2.4.5\build\include\opencv2\flann\any.h(70): error C2061: syntax error : identifier 'dest' : while compiling class template member function 'void cvflann::anyimpl::small_any_policy<t>::copy_from_value(const void ,void *)' 1> with 1> [ 1> T=const char * 1> ]"

Can you help me?

2013-06-11 08:21:36 -0600 answered a question OpenCV 2.4.3 VideoCapture not working on *.avi file input

Hope this answer can help you, I Had the same pbm with video with 100fps. I converted them to 50fps and it worked

2013-06-06 06:15:27 -0600 asked a question VideoCapture Release Mode

Hi, I am using W7/32bits with VC++ 2010, Opencv 2.0 The command "VideoCapture constructor", written like in the sample below, works fine under Debug version and crashes under release.

#include <stdio.h>
#include <tchar.h>
#include "cv.h"
#include "highgui.h"
using namespace cv;

int _tmain(int argc, _TCHAR* argv[]){
    VideoCapture capture("video.avi"); //320X240, 50 fps, 
     if(!capture.isOpened()) return 0;  
return 0;
}

please help