微软hololens学院教程-hologram230-空间映射(spatialmapping)

墨菲77 墨菲77     2022-08-13     190

关键词:

这是老版本的教程,为了不耽误大家的时间,请直接看原文,本文仅供参考哦!原文链接:https://developer.microsoft.com/EN-US/WINDOWS/HOLOGRAPHIC/holograms_230

空间场景建模是将真实环境的环境信息扫描到设备中,使得全息对象可以识别真实场景环境,从而达到可以将虚拟对象与真实世界相结合的效果。这节教程主要学习内容如下:

  • 使用Hololens扫描空间环境并将空间数据导入到开发计算机中。
  • 学习利用shader给空间网格赋予材质以便其更容易被发现。
  • 使用网格处理方法将网格变成简单的平面。
  • 对全息对象可以放置的位置进行放置提醒,使得用户更容易的放置。
  • 开发遮挡效果,即当全息对象被真实场景中的物体或者其他全息对象遮挡时,你仍然可以看见它,只不过它是线框模式的。

项目文件:

Download the files required by the project.

Unity 设置

  • 打开 Unity.
  • 选择新建 New创建一个新的项目.
  • 将项目命名为 Planetarium.
  • 保存地址到你下载的项目文件夹下 HolographicAcademy-Holograms-230-SpatialMapping .
  • 选择 3D .
  • 点击创建项目 Create Project.
  • 当Unity打开后,打开 Edit > Project Settings > Player.
  •  在Inspector 面板下,点击选择 Windows Store 图标.
  • 展开  Other Settings 设置.
  •  在Rendering 部分, 勾选 Use 16-bit Depth Buffers 选项.
  •  在Rendering部分, 勾选Virtual Reality Supported 选项.
  • 确保Windows Holographic 出现在 Virtual Reality SDKs 列表中. 如果没有,选择 + 按钮再选上 Windows Holographic.
  • 展开 Publishing Settings .
  • Capabilities 部分,勾选以下设置:
    • InternetClientServer
    • PrivateNetworkClientServer
    • Microphone
    • SpatialPerception
  • Edit > Project Settings > Quality
  • Inspector 面板下, 点击 Windows Store 图标最下方, 'Default' 的第二个下拉黑色箭头,将默认设置改为 Fastest.
  • 到project面板下, Assets > Import Package > Custom Package.
  • 定位到你下载的项目文件...\HolographicAcademy-Holograms-230-SpatialMapping\Starting 文件夹.
  • 点击 Planetarium.unitypackage.
  •  点击Open.
  •  一个Import Unity Package窗口会出现,点击Import 按钮.
  • 等待Unity导入所有的项目资源.
  •  在Hierarchy 面板中,删除 Main Camera.
  • Project 面板下, HoloToolkit\Utilities\Prefabs 文件夹,找到 Main Camera 对象.
  • 拖拽 Main Camera 预设到 Hierarchy 面板中.
  • Hierarchy 面板中,删除 Directional Light .
  • Project 面板, Holograms 文件夹下,定位到 Cursor 对象.
  • 拖拽 Cursor 预设到 Hierarchy 面板中.
  • 选中 Hierarchy 面板下的 Cursor 对象.
  •  在Inspector 面板下,点击 Layer 下拉按钮选择 Edit Layers....
  • User Layer 31 命名为 "SpatialMapping" 并添加此标签.
  • 将当前场景保存: File > Save Scene As...
  • 点击 New Folder 创建一个新的文件夹为 Scenes.
  • 命名新场景为 "Planetarium" 然后将它保存在 Scenes 文件夹下.

章节1 扫描

步骤:

  • Project 面板下打开HoloToolkit\SpatialMapping\Prefabs 文件夹, 找到 SpatialMapping 预设.
  • 拖拽 SpatialMapping 预设到 Hierarchy 面板中.

发布测试 (part 1)

  • 在 Unity中选择 File > Build Settings.
  • 点击 Add Open Scenes 将当前场景 Planetarium 添加到列表中.
  • 选择Platform 列表下的 Windows Store 然后点击下方的 Switch Platform.
  • 设置 SDKUniversal 10 ,设置 UWP Build TypeD3D.
  • 勾选 Unity C# Projects.
  • 点击 Build.
  • 创建一个新文件 New Folder 命名 "App".
  •  单机App 文件夹.
  • 点击 Select Folder 按钮.
  • 当Unity发布完成,一个文件资源管理器窗口会弹出.
  • 双击 App 文件夹并打开它.
  • 双击 Planetarium.sln 用VS打开.
  • 在VS中,将顶部工具栏内设置改为 Release,x86.
  • 选择远程设备Remote Machine.
  • 输入你设备的IP地址 your device's IP address ,选择通用未加密模式Universal (Unencrypted Protocol).记得设备要连网。
  • 点击Debug -> Start Without debugging 或者 Ctrl + F5.
  • 当你的APP成功发布到你的Hololens上时. 戴上它在你的房间行走,你会看到你房间的物体表面会被黑色和白色线框网格覆盖。
  • 扫描你的房间. 确保你看到了墙面,地面,以及天花板。

发布测试 (part 2)

现在让我们探索空间映射是如何影响性能的。
  •  在unity 中,选择分析器Window > Profiler.
  • 点击添加GPU分析器 Add Profiler > GPU.
  • 点击激活分析器 Active Profiler > <Enter IP>.
  • 输入你设备的IP地址 IP address .
  • 点击连接 Connect.
  • 观察GPU渲染帧所需的毫秒数.
  • 在设备上关闭应用.
  • 返回到VS中,打开 SpatialMappingObserver.cs 脚本. 你会在Assembly-CSharp (Universal Windows) 项目的HoloToolkit\SpatialMapping 文件夹里找到它 .
  • 定位到 Awake() 函数,添加如下代码: TrianglesPerCubicMeter = 1200;
  • 重新部署项目到你的设备上,然后重新连接分析器  profiler. 观察GPU渲染帧所需的毫秒数的变化.
  • 停止运行应用.

将扫描数据保存在电脑中

接下来需要将扫描的空间数据下载下来并导入Unity中以供编辑。

  • 返回到VS中,将上一步在Awake() 函数中添加的 TrianglesPerCubicMeter 代码删除.
  • 从新将项目发布到你的设备上. 我们现在应该运行渲染的是每立方米500个三角形。
  • 在电脑上打开你的浏览器,输入https://<你的IP地址> ,可以打开设备控制台,Windows Device Portal.
  • 选择 3D View .带上你的设备扫描室内一周
  •  选择Update 按钮.
  • 你会看到你扫描的空间场景会显示在窗口中.
  • 点击 Save 按钮.
  • 打开你的下载文件夹查看刚下载的空间文件 SRMesh.obj(或者你命名的其他文件).
  • 复制SRMesh.obj 到你Unity项目的 Assets 文件夹下.
  •  回到Unity, 选择Hierarchy 面板下的  SpatialMapping 对象.
  • 在Inspector面板中,找到 Object Surface Observer (Script) 组件.
  • 点击 Room Model 属性右边的小圆圈.
  • 在弹出窗口中搜索SRMesh 对象并选中,然后关闭窗口.
  • 现在 Room Model 属性值为 SRMesh.
  • 点击 Play 按钮进入Unity预览模式.
  •  SpatialMapping 组件会默认加载保存的房间模型的网格数据。
  • 选择 Scene 界面来查看你扫描的房间模型.
  • 再一次点击 Play 按钮可以退出预览.

NOTE: 下次您在Unity中进入预览模式时,它将默认加载保存的房间网格。

 章节2  可视化

给房间网格模型添加材质使其可见。

步骤:

  • 在 Unity的 Hierarchy 面板中,选择 SpatialMapping 对象.
  • Inspector 面板中找到 Spatial Mapping Manager (Script) 组件.
  • 点击Surface Material 属性右边的圆圈.
  • 在新弹出的窗口中搜索 BlueLinesOnWalls 材质并选中然后关闭窗口.
  • Project 面板下的 Shaders 文件夹,双击 BlueLinesOnWalls用VS打开.
  • 这是一个简单的顶点片段着色器程序, 实现了以下几点:
    1. 将顶点位置转换为世界空间。
    2. 检查顶点法线以确定像素是否是垂直的.
    3. 设置要渲染的像素的颜色.

部署发布:

  • 返回到Unity,进入预览模式。
  • 蓝线将在房间网格的所有垂直表面上呈现。
  • 切换到“Scene”选项卡以调整你观看房间的视角,并查看整个房间网格在Unity中的显示方式。
  • 在“Project”面板中,找到“Materials”文件夹,然后选择BlueLinesOnWalls材质球。
  • 修改材质球的一些属性,并查看更改在Unity编辑器中显示的效果。
             -在“Inspector”面板中,调整LineScale值,使线条看起来更厚或更薄。
             -在“Inspector”面板中,调整LinesPerMeter值以更改每个墙上显示的行数。
  • 退出预览模式。
  • 重新部署到HoloLens,并观察着色渲染如何在真实环境表面上显示。
  • Unity在渲染材质方面做得很好,但是在设备中不使用材质渲染总是一个好主意。

章节3 处理

这章主要学习处理空间场景模型数据的技术以在应用程序中使用。分析空间场景建模数据以查找平面和删除三角形。使全息图正确放置在真实环境中的平面上。

步骤:

  • 在 Unity的 Project 面板中, Holograms 文件夹下找到 SpatialProcessing 对象.
  • 拖拽 SpatialProcessing 对象到 Hierarchy 面板中.

SpatialProcessing 预设包括了用于处理空间场景建模数据的组件。 SurfaceMeshesToPlanes.cs脚本将基于空间场景建模数据查找和生成平面。 在我们的应用程序中我们将使用平面来代表墙壁,地板和天花板。 此预制还包括RemoveSurfaceVertices.cs脚本,它可以从空间场景建模网格中删除顶点。 这可以用于在网格中创建孔,或者删除不再需要的多余三角形(因为可以使用平面来代替)。

  •  在Unity的Project 面板, Holograms 文件夹下找到SpaceCollection 对象.
  • 拖拽 SpaceCollection 对象到 Hierarchy 面板中.
  • Hierarchy 面板中选择 SpatialProcessing 对象.
  • Inspector 面板找到 Play Space Manager (Script) 组件.
  • 双击 PlaySpaceManager.cs 脚本用VS打开.

PlaySpaceManager.cs脚本包含特定于应用程序的代码。 我们将向此脚本添加功能以实现以下行为:

    1 在超过扫描时间限制(10秒)后停止收集空间场景建模数据。

    2 处理空间场景建模数据:

            - 使用SurfaceMeshesToPlanes创建一个更简单的平面世界(墙壁,地板,天花板等)。

            - 使用RemoveSurfaceVertices删除落在平面边界内的表面三角形。

    3 生成一个全息图集合,并将它们放置在用户附近的墙壁和地板上。

完成代码:

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Windows.Speech;
using HoloToolkit.Unity;

/// <summary>
/// The SurfaceManager class allows applications to scan the environment for a specified amount of time 
/// and then process the Spatial Mapping Mesh (find planes, remove vertices) after that time has expired.
/// </summary>
public class PlaySpaceManager : Singleton<PlaySpaceManager>
{
    [Tooltip("When checked, the SurfaceObserver will stop running after a specified amount of time.")]
    public bool limitScanningByTime = true;

    [Tooltip("How much time (in seconds) that the SurfaceObserver will run after being started; used when 'Limit Scanning By Time' is checked.")]
    public float scanTime = 30.0f;

    [Tooltip("Material to use when rendering Spatial Mapping meshes while the observer is running.")]
    public Material defaultMaterial;

    [Tooltip("Optional Material to use when rendering Spatial Mapping meshes after the observer has been stopped.")]
    public Material secondaryMaterial;

    [Tooltip("Minimum number of floor planes required in order to exit scanning/processing mode.")]
    public uint minimumFloors = 1;

    [Tooltip("Minimum number of wall planes required in order to exit scanning/processing mode.")]
    public uint minimumWalls = 1;

    /// <summary>
    /// Indicates if processing of the surface meshes is complete.
    /// </summary>
    private bool meshesProcessed = false;

    /// <summary>
    /// GameObject initialization.
    /// </summary>
    private void Start()
    {
        // Update surfaceObserver and storedMeshes to use the same material during scanning.
        SpatialMappingManager.Instance.SetSurfaceMaterial(defaultMaterial);

        // Register for the MakePlanesComplete event.
        SurfaceMeshesToPlanes.Instance.MakePlanesComplete += SurfaceMeshesToPlanes_MakePlanesComplete;
    }

    /// <summary>
    /// Called once per frame.
    /// </summary>
    private void Update()
    {
        // Check to see if the spatial mapping data has been processed
        // and if we are limiting how much time the user can spend scanning.
        if (!meshesProcessed && limitScanningByTime)
        {
            // If we have not processed the spatial mapping data
            // and scanning time is limited...

            // Check to see if enough scanning time has passed
            // since starting the observer.
            if (limitScanningByTime && ((Time.time - SpatialMappingManager.Instance.StartTime) < scanTime))
            {
                // If we have a limited scanning time, then we should wait until
                // enough time has passed before processing the mesh.
            }
            else
            {
                // The user should be done scanning their environment,
                // so start processing the spatial mapping data...

                /* TODO: 3.a DEVELOPER CODING EXERCISE 3.a */

                // 3.a: Check if IsObserverRunning() is true on the
                // SpatialMappingManager.Instance.
                if(SpatialMappingManager.Instance.IsObserverRunning())
                {
                    // 3.a: If running, Stop the observer by calling
                    // StopObserver() on the SpatialMappingManager.Instance.
                    SpatialMappingManager.Instance.StopObserver();
                }

                // 3.a: Call CreatePlanes() to generate planes.
                CreatePlanes();

                // 3.a: Set meshesProcessed to true.
                meshesProcessed = true;
            }
        }
    }

    /// <summary>
    /// Handler for the SurfaceMeshesToPlanes MakePlanesComplete event.
    /// </summary>
    /// <param name="source">Source of the event.</param>
    /// <param name="args">Args for the event.</param>
    private void SurfaceMeshesToPlanes_MakePlanesComplete(object source, System.EventArgs args)
    {
        /* TODO: 3.a DEVELOPER CODING EXERCISE 3.a */

        // Collection of floor and table planes that we can use to set horizontal items on.
        List<GameObject> horizontal = new List<GameObject>();

        // Collection of wall planes that we can use to set vertical items on.
        List<GameObject> vertical = new List<GameObject>();

        // 3.a: Get all floor and table planes by calling
        // SurfaceMeshesToPlanes.Instance.GetActivePlanes().
        // Assign the result to the 'horizontal' list.
        horizontal = SurfaceMeshesToPlanes.Instance.GetActivePlanes(PlaneTypes.Table | PlaneTypes.Floor);

        // 3.a: Get all wall planes by calling
        // SurfaceMeshesToPlanes.Instance.GetActivePlanes().
        // Assign the result to the 'vertical' list.
        vertical = SurfaceMeshesToPlanes.Instance.GetActivePlanes(PlaneTypes.Wall);

        // Check to see if we have enough horizontal planes (minimumFloors)
        // and vertical planes (minimumWalls), to set holograms on in the world.
        if (horizontal.Count >= minimumFloors && vertical.Count >= minimumWalls)
        {
            // We have enough floors and walls to place our holograms on...

            // 3.a: Let's reduce our triangle count by removing triangles
            // from SpatialMapping meshes that intersect with our active planes.
            // Call RemoveVertices().
            // Pass in all activePlanes found by SurfaceMeshesToPlanes.Instance.
            RemoveVertices(SurfaceMeshesToPlanes.Instance.ActivePlanes);

            // 3.a: We can indicate to the user that scanning is over by
            // changing the material applied to the Spatial Mapping meshes.
            // Call SpatialMappingManager.Instance.SetSurfaceMaterial().
            // Pass in the secondaryMaterial.
            SpatialMappingManager.Instance.SetSurfaceMaterial(secondaryMaterial);

            // 3.a: We are all done processing the mesh, so we can now
            // initialize a collection of Placeable holograms in the world
            // and use horizontal/vertical planes to set their starting positions.
            // Call SpaceCollectionManager.Instance.GenerateItemsInWorld().
            // Pass in the lists of horizontal and vertical planes that we found earlier.
            SpaceCollectionManager.Instance.GenerateItemsInWorld(horizontal, vertical);
        }
        else
        {
            // We do not have enough floors/walls to place our holograms on...

            // 3.a: Re-enter scanning mode so the user can find more surfaces by 
            // calling StartObserver() on the SpatialMappingManager.Instance.
            SpatialMappingManager.Instance.StartObserver();

            // 3.a: Re-process spatial data after scanning completes by
            // re-setting meshesProcessed to false.
            meshesProcessed = false;
        }
    }

    /// <summary>
    /// Creates planes from the spatial mapping surfaces.
    /// </summary>
    private void CreatePlanes()
    {
        // Generate planes based on the spatial map.
        SurfaceMeshesToPlanes surfaceToPlanes = SurfaceMeshesToPlanes.Instance;
        if (surfaceToPlanes != null && surfaceToPlanes.enabled)
        {
            surfaceToPlanes.MakePlanes();
        }
    }

    /// <summary>
    /// Removes triangles from the spatial mapping surfaces.
    /// </summary>
    /// <param name="boundingObjects"></param>
    private void RemoveVertices(IEnumerable<GameObject> boundingObjects)
    {
        RemoveSurfaceVertices removeVerts = RemoveSurfaceVertices.Instance;
        if (removeVerts != null && removeVerts.enabled)
        {
            removeVerts.RemoveSurfaceVerticesWithinBounds(boundingObjects);
        }
    }

    /// <summary>
    /// Called when the GameObject is unloaded.
    /// </summary>
    private void OnDestroy()
    {
        if (SurfaceMeshesToPlanes.Instance != null)
        {
            SurfaceMeshesToPlanes.Instance.MakePlanesComplete -= SurfaceMeshesToPlanes_MakePlanesComplete;
        }
    }
}
PlaySpaceManager

部署发布:

  • 在部署到HoloLens之前,按Unity中的播放按钮进入播放模式。
  • 在文件加载房间网格后,等待10秒钟,这时在对空间场景模型网格进行处理。
  • 当处理完成时,地板,墙壁,天花板等将以平面版的形式呈现。
  • 在找到所有的平面之后,你应该会看到一个太阳系,在靠近相机的地板上。
  • 两个海报应该出现在相机附近的墙上。 如果在游戏模式下看不到它们,请切换到场景选项卡。
  • 再次按下播放按钮退出播放模式。
  • 像往常一样构建和部署该项目到HoloLens。
  • 等待扫描和处理空间场景模型数据完成。
  • 一旦你看到场景中平面生成,试着找到你的世界中的太阳系和海报。

章节4 放置

这章主要学习实现如何将你的全息对象通过手势操作将它放置在你想放置的平面上,如果你想放置的位置不具备放置的条件,提供视觉反馈提醒用户不能放置。

步骤:

  • 在Unity的 Hierarchy 面板选择 SpatialProcessing 对象.
  • Inspector 面板中找到 Surface Meshes To Planes (Script) 组件.
  • 改变 Draw Planes 属性为 Nothing .
  • 改变 Draw Planes 属性 Wall, 这时只有樯面会被渲染成平面状态.
  • Project 面板下, Scripts 文件夹, 双击 Placeable.cs 脚本用VS打开.

这个Placeable 脚本已附加海报和投影框上。 我们需要做的是取消注释一些代码,这个脚本将实现以下:   

     1.通过从立方体的中心和边界四个角进行光线投射,确定全息图是否匹配到了一个表面上。
     2.检查表面法线以确定它是否足够平滑以使全息图齐平。
     3.渲染出一个围绕全息图的立方体边框,以显示全息图放置时的实际尺寸。
     4.在全息图下面/后面投一个阴影,以显示它将放在地板/墙上的位置。
     5.如果全息图不能放置在表面上,渲染阴影为红色,如果可以放置,则将阴影渲染为绿色。
     6.重新定向全息图以与具有亲和力的表面类型(垂直或水平)对齐。
     7.平滑稳定地将全息图放置在所选表面上,以避免跳跃或断裂行为。

using System.Collections.Generic;
using UnityEngine;
using HoloToolkit.Unity;

/// <summary>
/// Enumeration containing the surfaces on which a GameObject
/// can be placed.  For simplicity of this sample, only one
/// surface type is allowed to be selected.
/// </summary>
public enum PlacementSurfaces
{
    // Horizontal surface with an upward pointing normal.    
    Horizontal  = 1,

    // Vertical surface with a normal facing the user.
    Vertical    = 2,
}

/// <summary>
/// The Placeable class implements the logic used to determine if a GameObject
/// can be placed on a target surface. Constraints for placement include:
/// * No part of the GameObject's box collider impacts with another object in the scene
/// * The object lays flat (within specified tolerances) against the surface
/// * The object would not fall off of the surface if gravity were enabled.
/// This class also provides the following visualizations.
/// * A transparent cube representing the object's box collider.
/// * Shadow on the target surface indicating whether or not placement is valid.
/// </summary>
public class Placeable : MonoBehaviour 
{
    [Tooltip("The base material used to render the bounds asset when placement is allowed.")]
    public Material PlaceableBoundsMaterial = null;

    [Tooltip("The base material used to render the bounds asset when placement is not allowed.")]
    public Material NotPlaceableBoundsMaterial = null;

    [Tooltip("The material used to render the placement shadow when placement it allowed.")]
    public Material PlaceableShadowMaterial = null;

    [Tooltip("The material used to render the placement shadow when placement it not allowed.")]
    public Material NotPlaceableShadowMaterial = null;

    [Tooltip("The type of surface on which the object can be placed.")]
    public PlacementSurfaces PlacementSurface = PlacementSurfaces.Horizontal;

    [Tooltip("The child object(s) to hide during placement.")]
    public List<GameObject> ChildrenToHide = new List<GameObject>();

    /// <summary>
    /// Indicates if the object is in the process of being placed.
    /// </summary>
    public bool IsPlacing { get; private set; }

    // The most recent distance to the surface.  This is used to 
    // locate the object when the user's gaze does not intersect
    // with the Spatial Mapping mesh.
    private float lastDistance = 2.0f;

    // The distance away from the target surface that the object should hover prior while being placed.
    private float hoverDistance = 0.15f;

    // Threshold (the closer to 0, the stricter the standard) used to determine if a surface is flat.
    private float distanceThreshold = 0.02f;

    // Threshold (the closer to 1, the stricter the standard) used to determine if a surface is vertical.
    private float upNormalThreshold = 0.9f;

    // Maximum distance, from the object, that placement is allowed.
    // This is used when raycasting to see if the object is near a placeable surface.
    private float maximumPlacementDistance = 5.0f;

    // Speed (1.0 being fastest) at which the object settles to the surface upon placement.
    private float placementVelocity = 0.06f;

    // Indicates whether or not this script manages the object's box collider.
    private bool managingBoxCollider = false;

    // The box collider used to determine of the object will fit in the desired location.
    // It is also used to size the bounding cube.
    private BoxCollider boxCollider = null;

    // Visible asset used to show the dimensions of the object. This asset is sized
    // using the box collider's bounds.
    private GameObject boundsAsset = null;

    // Visible asset used to show the where the object is attempting to be placed.
    // This asset is sized using the box collider's bounds.
    private GameObject shadowAsset = null;

    // The location at which the object will be placed.
    private Vector3 targetPosition;

    /// <summary>
    /// Called when the GameObject is created.
    /// </summary>
    private void Awake()
    {
        targetPosition = gameObject.transform.position;

        // Get the object's collider.
        boxCollider = gameObject.GetComponent<BoxCollider>();
        if (boxCollider == null)
        {
            // The object does not have a collider, create one and remember that
            // we are managing it.
            managingBoxCollider = true;
            boxCollider = gameObject.AddComponent<BoxCollider>();
            boxCollider.enabled = false;
        }

        // Create the object that will be used to indicate the bounds of the GameObject.
        boundsAsset = GameObject.CreatePrimitive(PrimitiveType.Cube);
        boundsAsset.transform.parent = gameObject.transform;
        boundsAsset.SetActive(false);

        // Create a object that will be used as a shadow.
        shadowAsset = GameObject.CreatePrimitive(PrimitiveType.Quad);
        shadowAsset.transform.parent = gameObject.transform;
        shadowAsset.SetActive(false);
    }

    /// <summary>
    /// Called when our object is selected.  Generally called by
    /// a gesture management component.
    /// </summary>
    public void OnSelect()
    {
        /* TODO: 4.a CODE ALONG 4.a */

        if (!IsPlacing)
        {
            OnPlacementStart();
        }
        else
        {
            OnPlacementStop();
        }
    }

    /// <summary>
    /// Called once per frame.
    /// </summary>
    private void Update()
    {
        /* TODO: 4.a CODE ALONG 4.a */

        if (IsPlacing)
        {
            // Move the object.
            Move();

            // Set the visual elements.
            Vector3 targetPosition;
            Vector3 surfaceNormal;
            bool canBePlaced = ValidatePlacement(out targetPosition, out surfaceNormal);
            DisplayBounds(canBePlaced);
            DisplayShadow(targetPosition, surfaceNormal, canBePlaced);
        }
        else
        {
            // Disable the visual elements.
            boundsAsset.SetActive(false);
            shadowAsset.SetActive(false);

            // Gracefully place the object on the target surface.
            float dist = (gameObject.transform.position - targetPosition).magnitude;
            if (dist > 0)
            {
                gameObject.transform.position = Vector3.Lerp(gameObject.transform.position, targetPosition, placementVelocity / dist);
            }
            else
            {
                // Unhide the child object(s) to make placement easier.
                for (int i = 0; i < ChildrenToHide.Count; i++)
                {
                    ChildrenToHide[i].SetActive(true);
                }
            }
        }
    }

    /// <summary>
    /// Verify whether or not the object can be placed.
    /// </summary>
    /// <param name="position">
    /// The target position on the surface.
    /// </param>
    /// <param name="surfaceNormal">
    /// The normal of the surface on which the object is to

微软hololens学院教程-hologram211-gestures(手势)

用户操作Hololens的全息对象时需要借助手势,手势的点击类似于我们电脑的鼠标,当我们凝视到某个全息对象时,手势点击即可以得到相应的反馈。这节教程主要讲述如何追踪用户的手势,并对手势操作做出反馈。这节对手势操... 查看详情

微软hololens学院教程-hologram230-空间映射(spatialmapping)

空间映射地图是将真实环境的环境信息扫描到设备中,使得全息对象可以识别真实场景环境,从而达到可以将虚拟对象与真实世界相结合的效果。这节教程主要学习内容如下:使用Hololens扫描空间环境并将空间数据导入到开发计... 查看详情

微软hololens学院教程-hologramgaze(凝视)

Hololens的使用如果类比到计算机的使用,在输入操作方面,Hololens了解用户的操作意图的第一个步骤是凝视,用户的凝视射线呈现在场景中的点为凝视点,就好像是电脑中的鼠标光标点,凝视是第一步,是人与hololens操作的开始。... 查看详情

hololens官方教程精简版-04.gesture(手势)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms211之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习手势功能,完成以下目标:-是否已检测到手势动作-使用导航手势... 查看详情

hololens官方教程精简版-06.spatialsound(空间声音)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms220之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习空间声音功能,完成以下目标:-感受空间声音-感受声音被遮挡的... 查看详情

hololens官方教程精简版-03.gaze(凝视)(代码片段)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms210之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习凝视功能,完成以下目标:让物体感知凝视凝视被感知后,给... 查看详情

hololens官方教程精简版-05.voice(语音)(代码片段)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms212之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习语音功能,完成以下目标:-语音命令(目前仅支持英文)-... 查看详情

hololens官方教程精简版-02.introductionwithdevice(代码片段)

...注意:本文已更新到5.5.1f1版本个人认为,官方的Holograms101教程是该系列最重要的一篇。这里面包含了几乎所有Hololens的特征:凝视、手势、声音输入、空间声音、空间映射。准备工作按《Hololens官方教程精简版-01.Gettin... 查看详情

hololens官方教程精简版-02.introductionwithdevice(代码片段)

...注意:本文已更新到5.5.1f1版本个人认为,官方的Holograms101教程是该系列最重要的一篇。这里面包含了几乎所有Hololens的特征:凝视、手势、声音输入、空间声音、空间映射。准备工作按《Hololens官方教程精简版-01.Gettin... 查看详情

hololens官方教程精简版-04.gesture(手势)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms211之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习手势功能,完成以下目标:-是否已检测到手势动作-使用导航手势... 查看详情

HoloLens 空间映射不可用

...教程MRBasics101:https://docs.microsoft.com/en-us/windows/mixed-reality/holograms-101并按照本文中的建议设置所有内容:https://docs.microsoft.com/e 查看详情

hololens官方教程精简版-06.spatialsound(空间声音)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms220之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习空间声音功能,完成以下目标:-感受空间声音-感受声音被遮挡的... 查看详情

hololens官方教程精简版-07.spatialmapping(空间映射)(代码片段)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms230之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习空间映射功能,完成以下目标:Chapter1-空间扫描目标完成空间扫描... 查看详情

hololens官方教程精简版-03.gaze(凝视)(代码片段)

...言注意:本文已更新到5.5.1f1版本个人建议,学习Holograms210之前,一定完成《Hololens官方教程精简版-02.IntroductionwithDevice》的学习。本篇集中学习凝视功能,完成以下目标:让物体感知凝视凝视被感知后,给... 查看详情

hololens开发入门简介

 Holograms100本教程将引导您使用Unity构建基本全息应用程序。这个项目可作为您希望在Unity中构建的任何全息应用程序的起始模板。预备知识已经利用安装工具正确配置的Windows10PC。目录1第 1章 –创建新项目2第 2章&n... 查看详情

如何在模拟器里体验微软hololens

众所周知,微软的HoloLens以及MR设备售价都比较高,这让不少感兴趣的朋友们望而却步,本篇教程将向大家介绍如何在模拟器里体验传说中的HoloLens。 1、需要准备的硬件:智能手机一台(WP、Android、iOS均可);CPU支持二级地... 查看详情

hololens微软hololens虚拟现实视频集

 混合虚拟现实(Hololens眼镜) 微软还是混合虚拟现实的行业领导者,Hololens眼镜在很多行业有了令人印象深刻的应用和演示。譬如:Hololens中文宣传片:https://pan.baidu.com/s/1jHRcD0MHololens展现无限可能(中文)https://pan.baidu.co... 查看详情

微软hololens遭遇失败,前途何在?

...ogs.com/SpencerGong)   Intel最近宣布,用于微软的HoloLens设备中的“全息处理单元”(HPU)——Atomex5-Z8100P处理器,最后的下单时间为9月30日,出货截止时间为10月30日,之后就完全停产。微软Hololens遭遇失败,前途何在?图1Ho... 查看详情