Ask Your Question

fenix0831's profile - activity

2013-12-18 03:47:47 -0600 received badge  Editor (source)
2013-12-18 03:44:29 -0600 asked a question opencv 2.4.3

Hi im now using the OpenCV2.4.3 in window 8. I have added all the lib i need to eclipse C++. By building i got 0 error. but by runing, it does nothing. i put my code hier:

using namespace cv;

using namespace std;

int main( )

{ Mat image;

image = imread( "D:/workspace/C++/DisplayImg/src/1.jpg", 1 );

namedWindow( "Display Image", CV_WINDOW_AUTOSIZE );

imshow( "Display Image", image );

waitKey(0);

return 0;

}

after debug i got this message: An internal error occurred during: "FetchJob". java.lang.NullPointerException

can some one maybe help me. thx alot.