OpenCVの顔検出過程を可視化した動画

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のデモ

関連記事

html5のcanvasの可能性

CNN Explainer:畳み込みニューラルネットワーク可視化ツール

ブログをGoogle App EngineからAmazon EC2へ移行

顔追跡による擬似3D表示『Dynamic Perspective』

ドットインストールのWordPress入門レッスン

Amazon Web ServicesでWordPress

Seleniumを使ったFXや株の自動取引

Google App Engine上のWordPressでFlickrの画像を貼る

iOSデバイスのためのフィジカル・コンピューティングツールキット『konashi(こなし)』

顔検出・認識のAPI・ライブラリ・ソフトウェアのリスト

Googleが画像解析旅行ガイドアプリのJetpac社を買収

PyTorch3D:3Dコンピュータービジョンライブラリ

Polyscope:3Dデータ操作用GUIライブラリ

Dlib:C++の機械学習ライブラリ

Webサイトのワイヤーフレームが作成できるオンラインツール

3Dグラフィックスの入門書

「ベンジャミン·バトン数奇な人生」でどうやってCGの顔を作ったのか

UnityのMonoBehaviourクラスをシングルトン化する

Geogram:C++の3D幾何アルゴリズムライブラリ

PCA (主成分分析)

iOSで使えるJetpac社の物体認識SDK『DeepBelief』

オープンソースの顔認識フレームワーク『OpenBR』

PyMC:Pythonのベイズ統計ライブラリ

今年もSSII

1枚の画像からマテリアルを作成できる無料ツール『Materialize』

ZScript

Theia:オープンソースのStructure from Motionライブラリ

クラスの基本

Twitter APIのPythonラッパー『python-twitter』

オープンソースのプリント基板設計ツール『KiCad』

OANDAのfxTrade API

Unityで画面タッチ・ジェスチャ入力を扱う無料Asset『TouchScript』

BlenderでPhotogrammetryできるアドオン

SONY製のニューラルネットワークライブラリ『NNabla』

PythonのHTML・XMLパーサー『BeautifulSoup』

フォトンの放射から格納までを可視化した動画

python-twitterで自分のお気に入りを取得する

LLM Visualization:大規模言語モデルの可視化

機械学習のオープンソースソフトウェアフォーラム『mloss(machine learning ope...

MLDemos:機械学習について理解するための可視化ツール

Unityの薄い本

Rerun:マルチモーダルデータの可視化アプリとSDK

コメント