资源简介
自己写的一点代码,HOG+LBP作为检测,并用了SVM的学习方法

代码片段和文件信息
% 比较一个矩形框与多个矩形框是否重叠
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
相关资源
- Anti-biofilm Activity of Resveratrol and Ursol
- 3D_HOG 代码
- hog特征提取,c版本代码
- Face Detection and Recognition: Theory and Pra
- HOG+SVM实现数字识别
- plant Leaf Disease Detection 植物叶片病害识
- Real-Time Collision Detection实时碰撞检测算
- 人车分类识别 HOG特征+KNN分类器
- Fault Detection and Diagnosis in Industrial Sy
- 基于HOG特征提取的svm行人头肩训练
- unity语音识别Word Detection
- 经典的行人检测算法,利用HOG和SVM实
- 基于HOG-CSLBP与深度学习的跨年龄人脸
- Pedestrian_detection_in_infrared_images.pdf
-
Single-Shot Refinement Neural Network for ob
- Image Analysis Classification and Change Detec
- Real-Time Collision Detection
-
You Only Look Once Unified Real-Time ob
ject - 行人检测程序
- A Computational Approach to Edge Detection
- Image Analysis Classification and Change Detec
- Fundamental Principles of Optical Lithography
- 蓝牙核心技术-HOGP
- HOG_SVM_DATA
- An Introduction to Signal Detection and Estima
-
ob
ject Detection in 20 Years A Survey总结汇 - 新手学习opencv--基于Hog的视频行人检测
- HOG特征可视化C代码
- Steven Kay信号检测与估计两卷Detection和
- opencv视频行人检测1HOG+SVM
评论
共有 条评论