Ask Your Question

HDolat's profile - activity

2013-09-27 23:15:35 -0600 commented question why CMake!

the exception text is: Unhandled exception at 0x7592812f in consoletest.exe: Microsoft C++ exception: cv::Exception at memory location 0x0035fa5c..

I also checked the assembly file but got nothing

2013-09-26 21:41:32 -0600 asked a question where to find compiled opencv for win 7

hi every one I tried to use cmake to use for opencv but after several days I think I should giveup. Where can I find an exe file which will easily install upencv on my win7 machine to use with visual studio 2010 and 2012.

thqanks

2013-09-25 06:36:45 -0600 received badge  Editor (source)
2013-09-25 06:33:43 -0600 asked a question why CMake!

Hi I downloaded the OpenCV 2.4.6, extracted in C:\openCV246. I want to use visual studio 2012. using the tutorial in the youtube link : http://youtu.be/cgo0UitHfp8

first I am really confused, when I can call libraries after extraction of opencv.exe file why should I suffer to build the opencv using cmake?!

then I added several libraries as instructed in the tutorial to simply capture video from my laptop camera.

#include<opencv\cv.h>
#include<opencv\highgui.h>

using namespace cv;

int main()
{
    Mat img;
    VideoCapture cap;
    cap.open(0);
    namedWindow("window",1);
    while(1)
    {
        cap>>img;
        imshow("window",img);
        waitKey(33);        
    }

    return 0;
}

but when it reaches the imshow("window", img); it returns an unhandled exception which I don't understand!

I appreciate any help to figure out these. regards