- 博客(3)
- 资源 (2)
- 收藏
- 关注
原创 OpenTLD c++ 版本 在Ubuntu下编译过程和遇到的困难
OpenTLD是一个视频长期跟踪目标的一个算法,是一位英国在读博士最先提出来的(Zdenek Kalal),他还提供了源代码,不过是C和matlab的,不过不大好懂,所以有大神移植了一个Cpp版本,一般学习这个算法都是看着cpp版本,所以我们下面就来将怎么编译运行这个版本。 1、安装opencv库,网上都有教程。在linux下面一般是把安装包下载下来,执行 cmake . make
2015-01-12 13:46:59 1090
转载 poj 3009 dfs + 恢复
#include #define BUF 21 #define MAX 100 int R, C; int area[BUF][BUF]; int steps, _min; int dx[4] = {1, -1, 0, 0}, dy[4] = {0, 0, 1, -1}; void dfs(int x, int y){ if (steps >= 10) return; int
2014-08-16 20:44:06 217
原创 poj1154 dfs 深度搜索 集合
#include #include using namespace std; int R, C; char **area; int dx[4] = {1, -1, 0, 0}, dy[4] = {0, 0, 1, -1}; int dfs(int x, int y,unsigned int sta){ int _max = 0, tmp = 0;
2014-08-15 21:10:40 355
unity3d手机游戏开发 金玺曾 完整版(下卷)
2014-04-27
unity3d手机游戏开发 金玺曾 完整版(上卷)
2014-04-27
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人