Skip to content

Kinect v1

Reputeless edited this page Mar 14, 2017 · 3 revisions

デプスとボディを取得する

デプスとボディの取得
# include <Siv3D.hpp>

void Main()
{
    if (!KinectV1::IsAvailable())
    {
        MessageBox::Show(L"Kinect は利用できません。");
        return;
    }

    if (!KinectV1::Start())
    {
        MessageBox::Show(L"Kinect の起動に失敗しました。");
        return;
    }

    DynamicTexture depthTexture;

    std::array<Optional<KinectV1Body>, 2> bodies;

    while (System::Update())
    {
        if (KinectV1::HasNewDepthFrame())
        {
            KinectV1::GetDepthFrame(depthTexture);
        }

        if (KinectV1::HasNewBodyFrame())
        {
            KinectV1::GetBodyFrame(bodies);
        }

        depthTexture.draw();

        for (const auto& body : bodies)
        {
            if (!body)
            {
                // 認識したボディが無い
                continue;
            }

            for (const auto& joint : body->joints)
            {
                Circle(joint.depthSpacePos, 10).draw();
            }
        }
    }
}

RGB画像を取得する

KinectV1::Start()の引数で、取得する情報をカスタマイズできます。
ボディの取得にはデプスが必要です。

# include <Siv3D.hpp>

void Main()
{
    if (!KinectV1::IsAvailable())
    {
        MessageBox::Show(L"Kinect は利用できません。");
        return;
    }

    // デプス (640x480) と RGB (640x480)
    if (!KinectV1::Start(KinectV1DataType::Depth_640x480 | KinectV1DataType::Color_640x480))
    {
        MessageBox::Show(L"Kinect の起動に失敗しました。");
        return;
    }

    DynamicTexture depthTexture, colorTexture;

    while (System::Update())
    {
        if (KinectV1::HasNewDepthFrame())
        {
            KinectV1::GetDepthFrame(depthTexture);
        }

        if (KinectV1::HasNewColorFrame())
        {
            KinectV1::GetColorFrame(colorTexture);
        }

        depthTexture.draw();

        colorTexture.draw(Alpha(127));
    }
}

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