Skip to content
This repository was archived by the owner on Nov 2, 2024. It is now read-only.

Commit 4ddb9ed

Browse files
committed
docs(detector): 实现汽车检测器
1 parent b9b35fc commit 4ddb9ed

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

docs/检测器实现.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
# 检测器实现
3+
4+
## 实现流程
5+
6+
目标检测的实现流程如下:
7+
8+
1. 输入图像
9+
2. 使用选择性搜索算法计算得到候选建议
10+
3. 逐个计算候选建议
11+
1. 使用`AlexNet`模型计算特征
12+
2. 使用线性`SVM`分类器计算得到分类结果
13+
4. 对所有分类为汽车的候选建议执行非最大抑制
14+
15+
## python实现
16+
17+
* `detector_car.py`
18+
19+
## 非最大抑制
20+
21+
参考
22+
23+
## 实现参数
24+
25+
* 非最大抑制阈值:`0.3`
26+
* 分类器阈值:`0.6`
27+
28+
## 实现结果
29+
30+
* 原图
31+
32+
![](./imgs/000012.jpg)
33+
34+
* 没有分类器阈值以及非最大抑制
35+
36+
![](./imgs/non-svm-thresh-and-nms.png)
37+
38+
* 添加分类器阈值
39+
40+
![](./imgs/no-nms.png)
41+
42+
* 添加非最大抑制
43+
44+
![](./imgs/detector-res.png)

mkdocs.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@ nav:
3333
- 工程解析: './工程解析.md'
3434
- 数据集创建: './数据集创建.md'
3535
- 微调模型: './微调模型.md'
36-
- 分类器训练: './分类器训练.md'
36+
- 分类器训练: './分类器训练.md'
37+
- 检测器实现: './检测器实现.md'

0 commit comments

Comments
 (0)