MSVCP100D.dll brakuje w trybie debugowania komputera Visual C ++ 2012
Wiem, że to pytanie zostało zadane wcześniej. Ale potrzebuję prawdziwej odpowiedzi,prawdziwe wyjaśnienie! Podczas uruchamiania (Ctrl + F5) kodu pokazanego poniżej, w Visual Studio 2012 Express, wTryb zwalniania, wszystko działa poprawnie. Gdy go uruchomiszTryb debugowania, Dostaję:
Program nie może się uruchomić, ponieważ MSVCP100.dll jest pomijany z twojego komputera ...
Zainstalowałem już pakiet redystrybucyjny 2010 i 2012.
Co się dzieje??? Proszę o szczegółowe wyjaśnienie, które mogę zrozumieć :) Wielkie dzięki !!!
#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;
}