我正在使用Visual Studio 2015的OpenCv 2.4.11版本。當我嘗試示例代碼時,出現「應用程序無法正確啓動0xc00007b」錯誤。我的代碼如下:OpenCV -Visual Studio 2015
#include "stdafx.h"
#include <iostream>
#include <opencv2\opencv.hpp>
using namespace std;
using namespace cv;
int main(int argc, char** argv) {
Mat img = imread("C:/Users/Murat/Desktop/lena1.png");
if (img.empty()) {
cout << "Resim yüklenemedi" << endl;
return -1;
}
namedWindow("deneme penecere ismi", CV_WINDOW_AUTOSIZE);
imshow("deneme penecere ismi", img);
waitKey(0);
destroyWindow("deneme penecere ismi");
return 0;
}
我該如何解決問題。
您確定您的Windows使用的是正確的DLL版本嗎? 'OpenCV x64 = Windows x64' – Berriel
您是否使用vs 2015編譯器重新編譯了opencv?我上次檢查的時候,它只是預建的2012年和2013年 – Miki
是的,我編譯成功。@ Miki和@Berriel DLL的版本是正確的 – mrtasln