In this paper, a new method of human detection based on depth map from 3D sensor Kinect is proposed. First, the pixel filtering and context filtering ...
分类:
移动开发 时间:
2014-08-28 19:44:45
阅读次数:
445
Abstract: In this paper, a general approach for human action recognition is applied for classifying human movements into action classes . The propose ...
分类:
其他好文 时间:
2014-08-27 21:56:28
阅读次数:
477
Description
Running a paper shop is not an easy job, especially with harsh customers. Today they brought their own rectangular sheets of paper, asking you to cut it into rectangular business cards ...
分类:
其他好文 时间:
2014-08-27 18:52:38
阅读次数:
314
This paper presented a very interesting topic. Censorship in China has always drawn people’s attention since in a perspective of universal values cens...
分类:
其他好文 时间:
2014-08-27 17:53:18
阅读次数:
263
题目地址:http://codeforces.com/contest/461/problem/C
题目大意:见原题。
算法分析:启发式暴力,每次把短的纸带折到长的纸带中,在全局记一个rev标记。注意细节。
Code:
#include
#include
#define N 100000
using namespace std;
bool rev;
int n,q,beg=1,en...
分类:
移动开发 时间:
2014-08-27 13:06:57
阅读次数:
238
Alice and Bob is playing a game, and this time the game is all about the absolute value!
Alice has N different positive integers, and each number is not greater than N. Bob has a lot of blank paper, ...
分类:
其他好文 时间:
2014-08-26 15:37:46
阅读次数:
228
本篇文章,我将使用元素的drag事件做一个画图工具,具体代码如下:
var g_masterPathArray;
var g_masterDrawingBox;
//创建一个画布
var paper = new Raphael("paper", 600, 600);
...
分类:
Web程序 时间:
2014-08-25 19:25:17
阅读次数:
360
//创建一个画布
var paper = new Raphael("paper", 500, 500);
//画圆
paper.circle(50, 50, 50);
//画圆角方形
paper.rect(90, 90, 50, 50, 10);
这样一个简单的案例就完成了。
简要说明:
new R...
分类:
Web程序 时间:
2014-08-25 17:06:44
阅读次数:
211
这节我们将介绍Raphaeljs中元素的属性和事件,案例还是以上一篇的代码展开
//创建一个画布
var paper = new Raphael("paper", 500, 500);
//画圆
var circle = paper.circle(50, 50, 40);...
分类:
Web程序 时间:
2014-08-25 17:02:54
阅读次数:
232
原文:http://blog.csdn.net/carson2005/article/details/6601109以下链接是本人整理的关于计算机视觉(ComputerVision, CV)相关领域的网站链接,其中有CV牛人的主页,CV研究小组的主页,CV领域的paper,代码,CV领域的最新动态,...
分类:
Web程序 时间:
2014-08-23 16:37:41
阅读次数:
1287