码迷,mamicode.com
首页 >  
搜索关键字:histogram    ( 477个结果
目标检测——HOG特征
1、HOG特征: 方向梯度直方图(Histogram of Oriented Gradient, HOG)特征是一种在计算机视觉和图像处理中用来进行物体检测的特征描述子。它通过计算和统计图像局部区域的梯度方向直方图来构成特征。Hog特征结合SVM分类器已经被广泛应用于图像识别中,尤其在行人检测中获得 ...
分类:其他好文   时间:2016-07-19 13:12:07    阅读次数:388
相似图片搜索的原理和实现——颜色分布法
#1,原理 每张图片都可以生成颜色分布的直方图(color histogram)。如果两张图片的直方图很接近,就可以认为它们很相似。 任何一种颜色都是由红绿蓝三原色(RGB)构成的,所以上图共有4张直方图(三原色直方图 + 最后合成的直方图)。 如果每种原色都可以取256个值,那么整个颜色空间共有1 ...
分类:其他好文   时间:2016-07-15 23:46:44    阅读次数:240
POJ 2559 Largest Rectangle in a Histogram
Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 18942 Accepted: 6083 Description A histogram is a polygon composed of a sequence of rectang ...
分类:其他好文   时间:2016-07-07 22:16:39    阅读次数:162
paper :80 目标检测的图像特征提取之(一)HOG特征
1、HOG特征: 方向梯度直方图(Histogram of Oriented Gradient, HOG)特征是一种在计算机视觉和图像处理中用来进行物体检测的特征描述子。它通过计算和统计图像局部区域的梯度方向直方图来构成特征。Hog特征结合SVM分类器已经被广泛应用于图像识别中,尤其在行人检测中获得 ...
分类:其他好文   时间:2016-07-04 21:58:04    阅读次数:329
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 hist ...
分类:其他好文   时间:2016-06-30 14:10:11    阅读次数:225
Renewed Comprehension of Histogram Specifcation
Today, I gain some renewed comprehension of Histogram Specification when reviewing Digital Image Processing. In general, specification is based on equ ...
分类:其他好文   时间:2016-06-25 16:23:28    阅读次数:172
opencv学习笔记(七)SVM+HOG
opencv学习笔记(七)SVM+HOG 一、简介 方向梯度直方图(Histogram of Oriented Gradient,HOG)特征是一种在计算机视觉和图像处理中用来进行物体检测的特征描述子。它通过计算和统计图像局部区域的梯度直方图来构成特征。Hog特征结合SVM分类器已经被广泛用于图像识 ...
分类:其他好文   时间:2016-06-24 12:43:38    阅读次数:445
LeetCode:Largest Rectangle in Histogram
Largest Rectangle in Histogram Total Accepted: 61747 Total Submissions: 252559 Difficulty: Hard Given n non-negative integers representing the histogram's bar height where th...
分类:其他好文   时间:2016-06-16 14:54:18    阅读次数:138
MATLAB实现频数直方图——hist的使用
"hist" is short for "Histogram(直方图、柱状图)"。 1.N = hist(Y) bins the elements of Y into 10 equally spaced containers and returns the number of elements in ...
分类:其他好文   时间:2016-05-30 18:30:35    阅读次数:494
Leetcode 之Largest Rectangle in Histogram(40)
又是一道构思巧妙的题,暴力求解复杂度太高,通过构造一个递增栈,O(n)就能解决问题,其中的过程值得细细体会。 int largestRect(vector<int> &height) { stack<int> s;//定义一个单调递增栈 height.push_back(0);//定义单调递增栈的最 ...
分类:其他好文   时间:2016-05-28 15:39:29    阅读次数:151
477条   上一页 1 ... 22 23 24 25 26 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!