您的位置:首页 > Web前端

Visual Studio配置VLFeat库

2016-02-28 13:40 344 查看
These instructions show how to setup a basic VLFeat project with Visual C++ Express 2008 on Windows XP (32 bit). Instructions for other versions of Visual Studio should be similar.

First, we create a new project called 
vlfeat-client
. Open Visual C++ Express 2008 and select File > New > Project and choose General
> Empty Project. Give your project a name and location (here 
vlfeat-client
) and click OK.


 



Next, we have to modify the project properties to include the VLFeat library and include directories. Right click on the project and select properties.



We want these settings to apply to both Debug and Release builds, so switch to all configurations.



Add an additional include path which points to the root of the VLFeat folder:



Add an additional library include path pointing to the 
bin/w32
 folder in the distribution, and add 
vl.dll
 as
a dependency:





This will allow us to compile, but we will not be able to run, getting because 
vl.dll
 will not be found:



To remedy this, we add a post-build step which copies vl.dll to the debug or release folder. Since this only needs to be done once for each project, we could instead copy the file manually.



Now that we have created our project, add a new .cpp file (right click on Source Files and choose Add > New Item) with this code:

extern "C" {
#include <vl/generic.h>
}

int main (int argc, const char * argv[]) {
VL_PRINT ("Hello world!\n") ;
return 0;
}


Build and run the project (Ctrl+F5). It should run correctly, and you should see this:



from: http://www.vlfeat.org/vsexpress.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息