资源简介
HOG-LBP+detection 行人检测
代码片段和文件信息
% 比较一个矩形框与多个矩形框是否重叠
function y=compareAll(rect1rect2)
iter=size(rect21);
y=zeros(iter1);
if sum(rect12)~=0
for m=1:iter
y(m)=compare(rect1rect2(m:));
end
end
end
function result=compare(rect1rect2)
% rect1=[12938565193];
% rect1=[193449289417];
% rect1=[193449321449];
% rect2=[193449353481];
% 比较两个矩形框是否重叠
% 两个矩形框都可以用一对点的坐标来表示
minx1=rect1(1); maxx1=rect1(2); miny1=rect1(3); maxy1=rect1(4);
minx2=rect2(1); maxx2=rect2(2); miny2=rect2(3); maxy2=rect2(4);
% 求出重叠部分的一对点的坐标
minx = max(minx1minx2);
miny = max(miny1miny2);
maxx = min(maxx1maxx2);
maxy = min(maxy1maxy2);
% 判断两个矩形框是否重叠
if minx>maxx || miny>maxy
result=0;
else
result=1;
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 815 2011-07-21 09:33 HOG-LBP detection\compareAll.m
文件 650 2011-07-15 13:30 HOG-LBP detection\Demotest.m
文件 995 2011-07-15 13:30 HOG-LBP detection\Demotrain.m
文件 1748 2011-07-12 17:14 HOG-LBP detection\hogcalculator.m
文件 16121 2011-07-15 13:30 HOG-LBP detection\hogfeat.m
文件 725 2008-12-19 17:42 HOG-LBP detection\HOGGradient.m
文件 795 2011-07-15 10:56 HOG-LBP detection\HOGSVM1.m
文件 276 2011-07-19 15:59 HOG-LBP detection\HOG_LBP.m
文件 869 2011-07-15 12:43 HOG-LBP detection\HOG_LBPSVM1.m
文件 1170 2011-07-12 17:00 HOG-LBP detection\LBP.m
文件 374 2011-07-12 16:01 HOG-LBP detection\lbp_com.m
文件 1166 2011-07-19 09:06 HOG-LBP detection\location.m
文件 637 2011-07-21 09:49 HOG-LBP detection\main.m
文件 279 2011-07-26 08:01 HOG-LBP detection\make.m
文件 284 2011-07-20 15:55 HOG-LBP detection\max_per5.m
文件 2546 2011-07-30 19:15 HOG-LBP detection\realdetection.m
文件 1908 2011-07-26 15:18 HOG-LBP detection\rectangleonimage.m
文件 2452 2011-07-16 15:12 HOG-LBP detection\SVM2.m
文件 1060 2011-07-26 10:53 HOG-LBP detection\test.m
文件 524 2011-07-19 09:17 HOG-LBP detection\winslide.m
目录 0 2011-09-03 19:20 HOG-LBP detection
----------- --------- ---------- ----- ----
35394 21
- 上一篇:杰奇1.7书库分类筛选
- 下一篇:Keil C51 V900注册机,完全破解无限制
相关资源
- HOG-LBP-detection
- 中文翻译Mastering Chess and Shogi by Self_
- Mastering Chess and Shogi by Self_Play with a
- 基于HOG和SVM的图像识别方法
-
车辆识别 xm
l文件 HOG特征 LEVEL=16 - opencv 人数统计
- hog+lbp+svm人脸识别 特征融合
- 密集人群中的行人检测
- 图像特征提取代码HOG、LBP、Haar、Hu矩
-
DPM模型行人检测xm
l文件 - 行人检测Opencv实现
-
opencv 训练 xm
l文件 haar - COCO数据集UA-DETRAC 车辆检测数据集 C
- Hogan阻抗控制第一部
- Matalbpso优化bp网络程序-PSO-bp.rar
- 尺度FAST结合改进LBP的特征匹配方法
- HOG+SVM读取样本路径批处理文件
- SVM+HOG+LBP
- LBP算法应用
- annotations_KAIST_testset.tar
- 行人检测常用数据库
- SVM+HOG (行人、车辆等检测)
- Opencv行人检测代码 自带hog检测
- camshift+kalman+LBP特征目标跟随算法实现
- MIT行人检测数据集
- 图像和视频行人检测代码
- 红外图像中的行人检测
- RhoGDIα negatively regulates the glioma
- hog+svm行人检测算法
- 佳能打印机墨盒清零工具
评论
共有 条评论