Ask Your Question

iggyfur's profile - activity

2014-11-11 00:13:50 -0600 commented answer Opencv_2.4.9 with Visual Studio error message

visual studio 2010

2014-11-06 18:29:51 -0600 commented answer Opencv_2.4.9 with Visual Studio error message

include <opencv\cv.h>

include <opencv\highgui.h>

using namespace cv;

int main(){

{

IplImage* img = cvLoadImage( "C:\Users\9589693153\Desktop\Vids\sqlite.png" ); //change the name (image.jpg) according to your Image filename.

cvNamedWindow( "Example1", CV_WINDOW_NORMAL ); cvShowImage("Example1", img); cvWaitKey(0);

cvReleaseImage( &img );

cvDestroyWindow( "Example1" );

return 0;

}

2014-11-06 18:18:59 -0600 received badge  Scholar (source)
2014-11-01 13:46:24 -0600 asked a question Opencv_2.4.9 with Visual Studio error message

After linking libraries from openpc 2.4.9 with visual studio 2010, I build and ran a program and got this error message. error C1075: end of file found before the left brace '{'at ' c:\users\iggy\documents\visual studio 2010\projects\open_cv_test\open_cvtest\main.cpp(6)' was matched. any help would be appreciated. iggy