close

qt-windows-opensource-5.1.1-msvc2010-x86-offline.exe

Qt 5.1.1 for Windows 32-bit (VS 2010, 505 MB)

#include <QCoreApplication>

#include <opencv2/core/core.hpp>

#include <opencv2/highgui/highgui.hpp>

int main(int argc, char *argv[])
{
  QCoreApplication a(argc, argv);
  cv::Mat img = cv::imread("sample.jpg"); // 讀取照片
  cv::namedWindow("sample image"); // 開啟視窗
  cv::imshow("sample image", img); // 顯示照片
  cv::waitKey(0);
  return 1;
 return a.exec();
}

選取<專案>, 編輯建置->發佈->請選擇<發佈>


選取QT4OpenCV246專案, 按滑鼠右鍵選擇<建置>

將sample.jpg置放到下列資料夾下

J:\QT4\build-QT4OpenCV246-Desktop_Qt_5_1_1_MSVC2010_32bit-Release

執行 QT4OpenCV246.exe

請將下列加入系統變數Path中

J:\OpenCV-2.4.6\opencv\bin;                  <---- x86版本

C:\Qt\Qt5.1.1\5.1.1\msvc2010\bin

C:\tbb30_174oss\bin\ia32\vc10

若發生下列錯誤代碼0xc000007b, 表示找不到tbb30, 請加入正確tbb路徑至Path系統變數

範例程式: QT4OpenCV246.zip

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 me1237guy 的頭像
    me1237guy

    天天向上

    me1237guy 發表在 痞客邦 留言(1) 人氣()