Hello everyone.

The Mixed Reality Forums here are no longer being used or maintained.

There are a few other places we would like to direct you to for support, both from Microsoft and from the community.

The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.

For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.

If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.

And always feel free to hit us up on Twitter @MxdRealityDev.
Options

Retrieving Rooms Scanned with Mixed Reality Headset?

I'm working with the HP Mixed Reality headset and Unity. I was wondering if there's a way to retrieve the rooms scanned by the headset. Not as a mesh, which is a feature only supported by HoloLens, but as a tag referencing the current room the headset is in.
For example, if the headset is in the restroom, retrieve a tag labeled 'restroom' or 'room1', and if the headset is in the lounge, retrieve a tag labeled 'lounge' or 'room2'.
The application idea is to walk around several rooms, and I'd like to be able to tell in which room the player is.

Best Answer

  • Options
    Answer ✓

    AFAIK, there no such feature. However another design may help you out. The StageReference frames are basically the way in which you get the world coordinate system. You can keep track of how far a user moves/teleports based on 3D models you have in your space. You can anchor your objects in world space and the differences in units (meters) from where they are compared to where you are. You can also use these stationary objects to become like "markers" in your code to determine rooms. For example you can place a "Lamp" 3D model in the bedroom, and a "TV" model in the living room allowing you to mark if a user is in one room versus another.

    HTH

    Dwight Goins
    CAO & Founder| Independent Architect | Trainer and Consultant | Sr. Enterprise Architect
    MVP | MCT | MCSD | MCPD | SharePoint TS | MS Virtual TS |Windows 8 App Store Developer | Linux Gentoo Geek | Raspberry Pi Owner | Micro .Net Developer | Kinect For Windows Device Developer
    http://dgoins.wordpress.com

Answers

  • Options
    Answer ✓

    AFAIK, there no such feature. However another design may help you out. The StageReference frames are basically the way in which you get the world coordinate system. You can keep track of how far a user moves/teleports based on 3D models you have in your space. You can anchor your objects in world space and the differences in units (meters) from where they are compared to where you are. You can also use these stationary objects to become like "markers" in your code to determine rooms. For example you can place a "Lamp" 3D model in the bedroom, and a "TV" model in the living room allowing you to mark if a user is in one room versus another.

    HTH

    Dwight Goins
    CAO & Founder| Independent Architect | Trainer and Consultant | Sr. Enterprise Architect
    MVP | MCT | MCSD | MCPD | SharePoint TS | MS Virtual TS |Windows 8 App Store Developer | Linux Gentoo Geek | Raspberry Pi Owner | Micro .Net Developer | Kinect For Windows Device Developer
    http://dgoins.wordpress.com

Sign In or Register to comment.