Ask Your Question

Fatchur's profile - activity

2015-04-15 06:18:16 -0600 commented answer an error when debugging

how to do that?

i'm sorry, i'm really newbe

2015-04-15 05:44:47 -0600 commented answer an error when debugging

Master, my computer is 64bit, and the configuration of debug is win32, is it has an effect?

2015-04-15 05:43:20 -0600 commented answer an error when debugging

There are some an error master 1>------ Build started: Project: OPEN_CV_TEST1, Configuration: Debug Win32 ------ 1> main.cpp 1>C:\Program Files\opencv\build\x64\vc10\bin\opencv_calib3d2411d.dll : fatal error LNK1107: invalid or corrupt file: cannot read at 0x320 ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

2015-04-15 02:33:36 -0600 commented question an error when debugging


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


    using namespace cv;
    int C;

    int main(){

        IplImage* img= cvLoadImage(C:\Users\user\Pictures\fatchur.jpg);
        cvNamedWindow( "example1", CV_WINDOW_NORMAL );
        cvShowImage ( "example1", img );
        cvWaitKey(0);
        cvReleaseImage(&img);
        cvDestroyWindow("example1");
        return 0;
    }
2015-04-15 02:13:34 -0600 asked a question an error when debugging

Hello masters, i a new comer here,

i got a problem when debugging my first program, my computer said "1>c:\users\user\documents\visual studio 2010\projects\open_cv_test1\open_cv_test1\main.cpp(10): error C2065: 'C' : undeclared identifier"

what is the mean? and what should i do?

thanks