调整格式,修正 hugo 无法编译问题.

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2020-03-04 15:02:32 +08:00
parent 09d1613cf9
commit c1ba30f537
1 changed files with 5 additions and 3 deletions

8
Algorithm/AI/Deep_Learning_Haar_Cascade_Explained.md Normal file → Executable file
View File

@ -4,11 +4,11 @@ title: "Deep Learning Haar Cascade Explained"
subtitle: ""
description: "翻译"
excerpt: "这是我认为最通俗易懂的 Haar 级联分类器的解释说明,文末视频非常形象。"
date: 2020-03-04 11:25:00
date: 2020-03-04 14:42:00
author: "Rick Chan"
tags: ["AI", "Classifier", "Haar"]
categories: ["Algorithm"]
published: false
published: true
---
[原文连接]<http://www.willberger.org/cascade-haar-explained/>
@ -19,10 +19,12 @@ Haar 级联分类器的背后思想以及其现实应用实在令人倍感惊奇
## Haar cascade
Haar Cascade is a machine learning object detection algorithm used to identify objects in an image or video and based on the concept of features proposed by Paul Viola and Michael Jones in their paper "Rapid Object Detection using a Boosted Cascade of Simple Features" in 2001.
Haar Cascade is a machine learning object detection algorithm used to identify objects in an image or video and based on the concept of features proposed by Paul Viola and Michael Jones in their paper "Rapid Object Detection using a Boosted Cascade of Simple Features" in 2001.
Haar 级联分类器是一种机器学习算法,最初由 Paul Viola 和 Michael Jones 在 2001 年的论文《Rapid Object Detection using a Boosted Cascade of Simple Features》中提出。该算法能够通过特征来识别图像或视频中的物体。
It is a machine learning based approach where a cascade function is trained from a lot of positive and negative images. It is then used to detect objects in other images.
## 参考资料
[人脸检测之Haar分类器](https://www.cnblogs.com/zyly/p/9410563.html)