码迷,mamicode.com
首页 > 其他好文 > 详细

VLFeat图像库在VS2012下的配置

时间:2014-06-15 14:42:00      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

     最近做课题所需,开始使用VLFeat图像库。

     库下载链接:

     http://download.csdn.net/detail/sunboyiris/7500097

    下载解压后改名为 vlfeat,放在D盘根目录下面。即为D:\vlfeat

    bubuko.com,布布扣

在系统属性里面,PATH路径添加   D:\vlfeat 如图所示:

bubuko.com,布布扣

   接下来新建一个项目:

   bubuko.com,布布扣


添加库文件夹,可执行文件夹,包含文件夹。


接下来开始写个测试代码了:

新建一个头文件:

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();
测试结果为:

bubuko.com,布布扣


VLFeat 配置完成。。。。

VLFeat图像库在VS2012下的配置,布布扣,bubuko.com

VLFeat图像库在VS2012下的配置

标签:style   class   blog   code   http   tar   

原文地址:http://blog.csdn.net/sunboyiris/article/details/30967243

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!