OpenCVの顔検出器の検出過程を可視化した動画。
ここで使われているアルゴリズムはViola-Jones法。この手法による顔検出のポイントは、以下の2つのステップ。
- 前処理:大量の学習データを用いたAdaBoostによる識別器の学習
- 高速な検出処理:Haar-Like特徴量を用いたCascade構造の識別器で画像中を高速全探索
弱い識別器を連結したCascade型の識別器でザルのように順に画像を選別していく。
弱い識別器の集合で強い識別器を作る方法は、集団学習とかアンサンブル学習とか呼ばれる。
この動画では、赤い枠で走査して、枠内のピクセルをCascadeに通過させて識別している様子が可視化されている。
もともとこの動画は、一般的な顔認識で検知されないようにするためのメイク & ヘアスタイル『CV Dazzle』の解説の一部らしい。
This video visualizes the detection process of OpenCV’s face detector.
The algorithm uses the Viola Jones method of calculating the integral image and then performing some calculations on all the areas defined by the black and white rectangles to analyze the differences between the dark and light regions of a face.
The sub-window (in red) is scanned across the image at various scales to detect if there is a potential face within the window. If not, it continues scanning.
If it passes all stages in the cascade file, it is marked with a red rectangle. But this does not yet confirm a face. In the post-processing stage all the potential faces are checked for overlaps.
Typically, 2 or 3 overlapping rectangles are required to confirm a face. Loner rectangles are rejected as false-positives.
This visualization was done as part of the documentation for CV Dazzle, camouflage from face detection.
For more information, visit cvdazzle.com
http://japanese.engadget.com/2011/03/17/cv-dazzle/
参考:コンピュータビジョンのセカイ – 今そこにあるミライ
http://news.mynavi.jp/series/computer_vision/010/
http://news.mynavi.jp/series/computer_vision/011/
2014/08/20追記:
【動画】Adaboostによる顔検出アルゴリズムの様子がよくわかるCUDAのデモ
関連記事
科学技術計算向けスクリプト言語『Julia』
TensorFlowでCGを微分できる『TensorFlow...
網元AMIで作ったWordpressサイトのインスタンスをt...
Unityで強化学習できる『Unity ML-Agents』
3Dグラフィックスの入門書
書籍『OpenCV 3 プログラミングブック』を購入
Unreal Engineの薄い本
オープンソースの顔認識フレームワーク『OpenBR』
OpenGV:画像からカメラの3次元位置・姿勢を推定するライ...
クラスの基本
OpenCV 3.1から追加されたSfMモジュール
Pythonの自然言語処理ライブラリ『NLTK(Natura...
geometry3Sharp:Unity C#で使えるポリゴ...
Konashiを買った
統計的な顔モデル
立体視を試してみた
HerokuでMEAN stack
Google XML Sitemap Generatorプラ...
Amazon EC2ログイン用の秘密鍵を無くした場合の対処方...
MeshroomでPhotogrammetry
NeuralNetwork.NET:.NETで使えるTens...
Unityの各コンポーネント間でのやり取り
Iterator
Google App Engine上のWordPressでF...
AMIMOTO(PVM版)で作成したインスタンスをAMIMO...
DCGAN (Deep Convolutional GAN)...
html5のcanvasの可能性
書籍『ゼロから作るDeep Learning』で自分なりに学...
fSpy:1枚の写真からカメラパラメーターを割り出すツール
Googleが画像解析旅行ガイドアプリのJetpac社を買収
iPadをハンディ3Dスキャナにするガジェット『iSense...
オープンソースのプリント基板設計ツール『KiCad』
『手を動かしながら学ぶエンジニアのためのデータサイエンス』ハ...
1枚の画像からマテリアルを作成できる無料ツール『Materi...
MVStudio:オープンソースのPhotogrammetr...
Managing Software Requirements...
KelpNet:C#で使える可読性重視のディープラーニングラ...
Photogrammetry (写真測量法)
Cartographer:オープンソースのSLAMライブラリ
Unity MonoBehaviourクラスのオーバーライド...
Kinect for Windows V2のプレオーダー開始
Fast R-CNN:ディープラーニングによる一般物体検出手...


コメント