Ask Your Question

zaman_faruqui's profile - activity

2017-08-24 01:23:27 -0600 asked a question How can I publish my book in OpenCV Library?

I have written a book about OpenCV for beginners. The book is focused on the the problems a beginner faces when starts working with OpenCV. How can I publish the my book in OpenCV Library?

2015-03-11 00:46:04 -0600 asked a question How to Solve 'opencv_core2411d.dll' is not found problem in Visual Studio 12?

Every time I click on debug, this error message shows up: "opencv_core2411d.dll'. Cannot find or open the PDB file."

I've- -specified environment variable -edited Linkers and C/C++ section -Copied all the dll files in system32 and systemwow32 -palced the dll files in the project folder

and still there is nothing except this error!

Is there anyone really knows how to solve this problem?

2015-03-10 21:50:08 -0600 answered a question opencv_core2411d.dll is not installed

I'm facing the same problem. But there is no solution. I've been trying for 2 months to run this OpenCV. But no luck. Looks like developers of OpenCV, don't know how to solve this problem too.

2015-03-10 10:45:52 -0600 asked a question how to solve "opencv_core2411d.dll'. Cannot find or open the PDB file" Problem?

My Code is:

include <opencv2 core="" core.hpp="">

include <opencv2 highgui="" highgui.hpp="">

include <iostream>

using namespace cv; using namespace std;

int main( int argc, char** argv ) { if( argc != 2) { cout <<" Usage: display_image ImageToLoadAndDisplay" << endl; return -1; }

Mat image;
image = imread(argv[1], IMREAD_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", 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;

}

When I debug my code, two errors show up. They are: 1. opencv_core2411d.dll'. Cannot find or open the PDB file 2. opencv_highgui2411d.dll'. Cannot find or open the PDB file.

Please, someone help me to solve this problem