Skip to content

顔検出

Reputeless edited this page Mar 14, 2017 · 3 revisions

Webカメラから顔を認識する

# include <Siv3D.hpp>

void Main()
{
    Webcam webcam(0);

    if (!webcam.start())
    {
        return;
    }

    Image image;

    DynamicTexture texture;

    while (System::Update())
    {
        if (webcam.hasNewFrame())
        {
            webcam.getFrame(image);

            for (const auto rect : Imaging::DetectFaces(image, CascadeType::Photo, 3, { 40, 40 }))
            {
                rect.overwriteFrame(image, 3, 3, Palette::Red);
            }

            texture.fill(image);
        }

        if (texture)
        {
            texture.mirror().draw();
        }
    }
}

イラストから顔を検出する

顔認識

イラスト提供: 古古米 さん

# include <Siv3D.hpp>

void Main()
{
    Texture texture;

    while (System::Update())
    {
        if (Dragdrop::HasItems())
        {
            if (Image image{ Dragdrop::GetFilePaths()[0] })
            {
                for (const auto rect : Imaging::DetectFaces(image, CascadeType::Anime))
                {
                    rect.overwriteFrame(image, 3, 3, Palette::Red);
                }

                texture = Texture(image);

                Window::Resize(texture.size);
            }
        }

        if (texture)
        {
            texture.draw();
        }
    }
}

Siv3D について

  1. Siv3D の基本
  2. 図形を描く
  3. テクスチャを描く
  4. テキストを描く
  5. 文字列と数値の変換
  6. キーボード入力
  7. マウス入力
  8. サウンドの再生
  9. MIDI の再生
  10. ウィンドウと背景
  11. 図形のあたり判定
  12. 乱数
  13. ダイアログ
  14. ドラッグ & ドロップ
  15. アプリの状態
  16. テキストファイル
  17. INI, CSV, JSON
  18. バイナリファイル
  19. GUI
  20. アセット管理
  21. 画像編集
  22. Web カメラ
  23. マイク入力
  24. 経過時間の測定
  25. HSV カラー
  26. ファイルダウンロード
  27. 3D 描画
  28. 2D のレンダーステート
  29. 3D のレンダーステート
  30. パーティクル
  31. スクリーンショット
  32. アプリケーションの公開
  33. さらに学ぶには

表現テクニック集

入出力デバイス

開発のヒント

Clone this wiki locally