VLFeat影象庫在VS2012下的配置
阿新 • • 發佈:2019-01-08
最近做課題所需,開始使用VLFeat影象庫。
庫下載連結:
下載解壓後改名為 vlfeat,放在D盤根目錄下面。即為D:\vlfeat
在系統屬性裡面,PATH路徑新增 D:\vlfeat 如圖所示:
接下來新建一個專案:
新增庫資料夾,可執行資料夾,包含資料夾。
接下來開始寫個測試程式碼了:
新建一個頭檔案:
vlfeature.h
#pragma once #include "stdafx.h" #include <iostream> using namespace std; extern "C"{ #include <generic.h> #include <stringop.h> #include <pgm.h> #include <sift.h> #include <getopt_long.h> }; class vlfeature { public: vlfeature(); ~vlfeature(); void vlfeaturetest(); private: };
vlfeature.cpp
#include "stdafx.h"
#include "vlfeature.h"
vlfeature::vlfeature()
{
}
vlfeature::~vlfeature()
{
}
void vlfeature::vlfeaturetest()
{
VL_PRINTF("hello,world.");
getchar();
//return 0;
}
主函式呼叫如下:
vlfeature vl1;
vl1.vlfeaturetest();
測試結果為:
VLFeat 配置完成。。。。