0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ARFoundation ステンシル画像とデプス画像を表示する

Last updated at Posted at 2021-07-26

ステンシル画像とデプス画像を表示する

UI→Rawimageを作成する
0D3EFEF9-27F8-4BEF-A39A-3AE646FAFE4F_4_5005_c.jpeg

Rawimageをもう一つ作成し、名前をImage Stencil、ImageDepthに変更する
74988517-B15D-4784-9C07-D7A18A3E7A8B_4_5005_c.jpeg

Canvasを選択し、UIScaleModeをScaleWithScreenSizeに変更する
628A0999-2DC0-42EE-BEAC-DB47A17FBE89.jpeg

各Rawimageのサイズを変更する
8D289EB8-0461-4B9F-BD03-1FB86D67C263.jpeg
79A78030-EACB-4B53-8930-478E1876C0DB.jpeg

DrawHumanStencil.csを作成し、下記を記述する

DrawHumanStencil
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.XR.ARFoundation;

public class DrawHumanStencil : MonoBehaviour
{
    [SerializeField]
    private RawImage imageStencil;

    [SerializeField]
    private RawImage imageDepth;

    private AROcclusionManager m_AROcclusionManager;

    void Awake()
    {
        m_AROcclusionManager = GetComponent<AROcclusionManager>();
    }

    void Update()
    {
        // AROcclusionManager から取得したステンシル画像をテクスチャとして描画する
        imageStencil.texture = m_AROcclusionManager.humanStencilTexture;
        // AROcclusionManager から取得したデプス画像をテクスチャとして描画する
        imageDepth.texture = m_AROcclusionManager.humanDepthTexture;
    }
}

ARCameraにスクリプトをつけ、Rawimageをアタッチする
8C8D857A-E1FC-4568-B977-F8DDA76FF769.jpeg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?