Ask Your Question

shilfa's profile - activity

2013-07-07 03:40:42 -0600 asked a question Image loading and display problem

Hi,

I tried the opencv tutorial code of load and display image..

int main( int argc, char** argv ) { if( argc != 2) { cout <<" Usage: display_image ImageToLoadAndDisplay" << endl; return -1; } Mat image; image = imread(argv[1], CV_LOAD_IMAGE_COLOR); // Read the file if(! image.data ) // Check for invalid input { cout << "Could not open or find the image" << std::endl ; return -1; }

namedWindow( "Display window", CV_WINDOW_AUTOSIZE );// Create a window for display. imshow( "Display window", image ); // Show our image inside it.

waitKey(0); // Wait for a keystroke in the window return 0; }

the build is successful and the command prompt displays "Could not open or find the image"...I gave the arguments in properties->debugging->command arguments and also the picture is inside the project folder with .cpp file. Can some one please tell me the reason..

2013-07-06 21:39:21 -0600 asked a question Embedding opencv with visual studio 2010

Hi, I am new to opencv. I am not able to embed opencv lib to visual studio 2010. can some body help me doing it. I have tried following the opencv help documentation, but are certain things like set env variable which i am not able to do. can any1 please help me..