MSVCP100D.dll fehlt in Ihrem Computer Debug-Modus Visual C ++ 2012

Ich weiß, dass diese Frage schon einmal gestellt wurde. Aber ich brauche eine echte Antwort,eine echte Erklärung! Beim Ausführen (Strg + F5) des darunter angezeigten Codes in Visual Studio 2012 Express inFreigabemodus, funktioniert alles. Beim EinfahrenDebug-Modus, Ich bekomme:

Das Programm kann nicht starten, da MSVCP100.dll von Ihrem Computer fehlt ...

Ich habe das Redistributable Package 2010 und 2012 bereits installiert.

Was ist los??? Bitte eine ausführliche Erklärung, die ich verstehen kann :) Vielen Dank !!!

#include "stdafx.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>

using namespace cv;
using namespace std;

int main( int argc, char** argv )
{
    Mat image = imread("Bild.jpg");

    namedWindow("Mein Bild");

    imshow("Mein Bild", image);

    waitKey(5000);

    //The member variable data is in fact a pointer to the allocated memory block that will contain
    //the image data. It is simply set to 0 when no image has been read.
    if(!image.data)
    {
        cout<<"No image has been createt"<<endl;
    }

    cout<<"height = " << image.size().height <<"\t width = "<< image.size().width<<endl;

    //page 27

    return 1;
}

Antworten auf die Frage(3)

Ihre Antwort auf die Frage