资源简介
HOG(方向梯度直方图)matlab源程序
代码片段和文件信息
function [bm bv] = anna_BinMatrix(AEGanglebin)
% anna_BINMATRIX Computes a Matrix (bm) with the same size of the image where
% (ij) position contains the histogram value for the pixel at position (ij)
% and another matrix (bv) where the position (ij) contains the gradient
% value for the pixel at position (ij)
%
%IN:
% A - Matrix containing the angle values
% E - Edge Image
% G - Matrix containing the gradient values
% angle - 180 or 360%
% bin - Number of bins on the histogram
% angle - 180 or 360
%OUT:
% bm - matrix with the histogram values
% bv - matrix with the graident values (only for the pixels belonging to
% and edge)
[contornsn] = bwlabel(E);
X = size(E2);
Y = size(E1);
bm = zeros(YX);
bv = zeros(YX);
nAngle = angle/bin;
for i=1:n
[posYposX] = find(contorns==i);
for j=1:size(posY1)
pos_x = posX(j1);
pos_y = posY(j1);
b = ceil(A(pos_ypos_x)/nAngle);%对A中每个元素朝正无穷大方向取整数部分,并返回与A同维的整数数组B,对于一个复数参量A,则分别对其实部和虚数朝正无穷大方向取整数部分,并返回一复数数据B。
if b==0 bin= 1; end
if G(pos_ypos_x)>0
bm(pos_ypos_x) = b;
bv(pos_ypos_x) = G(pos_ypos_x);
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 12 2008-06-03 12:07 hog算法\hog算法\a.txt
文件 1333 2012-03-13 12:54 hog算法\hog算法\anna_binMatrix.m
文件 1301 2012-03-14 11:07 hog算法\hog算法\anna_phog.m
文件 499 2008-05-29 15:51 hog算法\hog算法\anna_phogDesc
文件 621 2008-05-29 15:25 hog算法\hog算法\anna_phog_demo.m
文件 24630 2008-05-28 14:34 hog算法\hog算法\crop.bmp
文件 16821 2012-03-13 10:52 hog算法\hog算法\crop.bmp.txt
文件 220 2012-03-15 13:52 hog算法\hog算法\example.m
文件 1399 2012-03-15 13:49 hog算法\hog算法\hog.m
文件 14200 2004-11-09 06:29 hog算法\hog算法\image_0058.jpg
文件 166150 2008-06-02 21:49 hog算法\hog算法\image_0058.jpg.txt
文件 62 2012-03-13 16:53 hog算法\hog算法\juzhendebingji.m
文件 968 2008-02-17 14:54 hog算法\hog算法\readme.txt
文件 80 2012-03-15 14:05 hog算法\hog算法\Unti
文件 1214 2012-03-15 13:46 hog算法\hog算法\Unti
目录 0 2012-03-15 19:57 hog算法\hog算法
目录 0 2012-03-12 21:19 hog算法
----------- --------- ---------- ----- ----
229510 17
- 上一篇:基于Hough变换车牌提取
- 下一篇:WENO对激波管求解
相关资源
- MATLAB实现HOG特征提取
- HOG特征的MATLAB代码
- HOG特征提取 matlab代码
- HOG 根据Dalal提出的HOG特征算法编写
- HoG SVm 人脸识别方
- 基于HOG+SVM的行人检测系统
- hog特征提取matlab实现
- matlab实现HOG+LBP+HIKSVM行人检测算法
- HOGadaboos 应用HOG和adbost进行人体检测试
- ped_detector_RELEASE.tar 基于分层的HOG的行
- Pedestrian-Detection 一个简单的基于HOG的
- HOGadaboost 用matla实现的行人检测
- adaboost-train-test 级联分类器学习
- orthogonal-matching-pursuit OMP算法的matlab的
- hog 方向梯度直方图的全部代码
- HOG 计算局部形状描述符梯度方向直方
- hog-feature HOG(方向梯度直方图)图像
- pedestrian-detectionsvms.tar
- fastHOG3D--full-version 一个完整版
- test3
- HogPSVM-Pedestrian-Detection- 保证可用的
- peddetection 行人检测的源程序
- Code HOG特征提取
- hog-Psvm 一个简单的基于HOG的行人检测
- 基于HoG特征和粒子滤波的跟踪:C、
- HOG+SVM图像分类算法
评论
共有 条评论