Visual Studio配置VLFeat库

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.

New Project 
Empty Project

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

Properties

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

All Configurations

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

Additional Includes

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

Additional LIBDIRAdditional Dependencies

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

vl.dll was not 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.

Post-build step

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:

Visual C++ OK


from: http://www.vlfeat.org/vsexpress.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值