码迷,mamicode.com
首页 >  
搜索关键字:histogram    ( 477个结果
(转)梯度方向直方图HOG(Histograms of Oriented Gradients )
HOG(Histograms of Oriented Gradients )梯度方向直方图 方向梯度直方图(Histogram of Oriented Gradient, HOG)特征是一种在计算机视觉和图像处理中用来进行物体检测的特征描述子。此方法使用了图像的本身的梯度方向特征,类似于边缘方向直方...
分类:其他好文   时间:2015-01-21 19:35:44    阅读次数:230
hdu 1506 Largest Rectangle in a Histogram DP
Largest Rectangle in a Histogram Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 12222    Accepted Submission(s): 3392 Problem Descripti...
分类:其他好文   时间:2015-01-19 10:57:24    阅读次数:167
烟雾检测笔记1--《Video-based smoke detection with histogram sequence of LBP and LBPV pyramids》解析、实现
基于HEP(histograms of equivalent patterns【1】)框架下的特征具有良好的纹理分类效果,LBP(local binary patterns【2】)属于HEP框架下最常用的特征,具有对亮度、旋转等良好的不变特性。在基于分块的视频烟雾检测中,常使用其作为纹理分类的特征。...
分类:其他好文   时间:2015-01-18 18:22:38    阅读次数:409
Leetcode#84 Largest Rectangle in Histogram
原题地址有两种方法,左右扫描或辅助栈。1. 左右扫描法考虑到最大面积的矩形高度一定跟某个条一样高,所以挨个枚举每个条,看其向左、向右最多能延伸到多远。在计算左右边界时,可以借助之前计算过的结果迭代(类似动归的感觉)优化以减少时间复杂度,这应该算是唯一的难点了。总的来说,向左一遍,向右一遍,整体求面积...
分类:其他好文   时间:2015-01-18 17:04:54    阅读次数:250
hdu 1506 Largest Rectangle in a Histogram(DP)
题意:有一个柱状图,有N条柱子。每一条柱子宽度都为1,长度为h1...hN。在这N条柱子所构成的区域中找到一个最大面积,每平方米3块钱,问最多赚多少钱。输入:1>n,n){ mem(leftt,0); mem(rightt,0); rep(i,1,n){ ...
分类:其他好文   时间:2015-01-17 00:59:24    阅读次数:251
hdu 1506 Largest Rectangle in a Histogram ((dp求最大子矩阵))
# include # include # include # include using namespace std;__int64 a[100010],l[100010],r[100010];///l[i]左边连续大于等于a[i]的下标,r[i]右边连续大于等于a[i]的下标,所以对于a[i]的...
分类:其他好文   时间:2015-01-11 21:37:01    阅读次数:323
[Elasticsearch] 聚合 - 时间数据处理(Looking at Time)
本章翻译自Elasticsearch官方指南的Looking at Time一章。 时间数据处理(Looking at Time) 如果在ES中,搜索是最常见的行为,那么创建日期柱状图(Date Histogram)肯定是第二常见的。为什么要使用日期柱状图呢? 想象在你的数据中有一个时间戳。数据是什么不重要-Apache日志事件,股票交易日期,棒球比赛时间-任何拥...
分类:其他好文   时间:2015-01-11 01:01:35    阅读次数:365
[Elasticsearch] 聚合 - 创建条形图(Bar Chart)
创建条形图(Building Bar Charts) 聚合的一个令人激动的性质是它能够很容易地被转换为图表和图形。在本章中,我们会使用前面的样本数据集来创建出各种分析案例。我们也会展示聚合能够支持的种类。 柱状图桶(Histogram Bucket)非常有用。柱状图在本质上就是条形图,如果你创建过一份报告或者分析面板(Analytics Dashboard),毫无疑问其中会有一些条形图...
分类:其他好文   时间:2015-01-09 01:36:37    阅读次数:245
[leetcode]Largest Rectangle in Histogram
问题描述: Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram. Above is a histogram where wi...
分类:其他好文   时间:2015-01-08 22:49:39    阅读次数:316
[leetcode]
问题描述: Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area. 基本思想: 与Largest Rectangle in Histogram 思想类似,只是对每行都执行了一遍。 代码: int ma...
分类:其他好文   时间:2015-01-08 22:47:03    阅读次数:166
477条   上一页 1 ... 36 37 38 39 40 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!