I was trying to implement this with Unity, but it doesn’t seem to be supported. I’ve downloaded Microsoft’s HoloToolkit for Unity and sniffed around all of the Spatial classes. The FileSurfaceObserver is only used by the Unity Editor. The SpatialMappingObserver is used on the device, but does not support loading from a file. It’s a continuous observer, but can be turned off.
How can I load a mesh from disk, and have the hololens orient the user within that space (preferably with events telling me when it can’t match the space)?
The typical way to achieve what you’re looking for is to map the room normally and then pause or halt updates so the data is frozen. The HoloToolkit SpatialMappingRenderer and SpatialMappingCollider both support this through their FreezeMeshUpdates properties. If you’re writing the script for spatial mapping yourself, it’s as simple as not calling SurfaceObserver::Update once you have data you’re happy with. I think this is what Microsoft is saying in the link you posted.
As far as I’m aware there isn’t a channel to tell the HoloLens about geometry in the room and have it understand that spatially. There shouldn’t be a long wait to map the room the next time your application runs (aside from the cost of ingesting the spatial mapping data) since the device remembers its spatial data at the OS level between boots.
Okay thanks, I haven’t tried the SpatialMappingRenderer but I will try that route out instead.
How does the Fragments game do it? It doesn’t seem to have any re-mapping step on app relaunch, and seems to recognize all of the previously scanned features. The mapping step takes a while in that game… Additionally, you can load
Is it likely that they are using a custom solution? I can imagine building a cleaned up, optimized scan of the full room, performing feature detection on it, and then comparing it to smaller, on-the-fly spatial meshes from the hololens… but that is very much non-trivial.
I don’t know how Fragments does its spatial mapping. My best guess is that it’s scanning when the app starts, doing some processing to detect planes and play spaces, and then potentially saving/loading those through the persistence API. If Fragments is built in Unity, I would be surprised if it used a custom spatial mapping solution.
I’m familiar with the SpatialMappingRenderer, SpatialMappingCollider, and their shared parent SMBaseAbstract. These are components that Microsoft built to automate common spatial mapping use cases. SpatialMappingObserver seems to be a different component built by Microsoft that does largely the same things. SpatialMappingManager seems to manage SpatialMappingObserver components but a casual inspection hasn’t revealed terribly much more.
Hey, was this figured out? The Fragments way of having you scan the room prior to playing the game works great. I wish they had that tutorial after the Holograms 230 one.
It might be easier to ask questions about a Microsoft game on the Microsoft forums for Hololens development.
It help to explore the spatial mapping renderer and collider components in 5.6 or 5.5 builds of unity. Have you tried saving a scan using the world anchor store?
I’ve setup a previously scanned room into my hololens project following your recomendations.
Could you please help a bit further ?
How do I achieve holograms (objects) placement within this room ?
To be more precise… I would like to know if it is posible to place objects in a pre-scaned room from unity editor and get them back at their right position in hololens when in that saved room.
I just received my hololens and i’m looking for a solution to do an application supposed to run in only one room !
So i get the spatial mapping from the web admin interface of hololens and i’m looking to know how i can fix holograms on a specific wall in unity.
When i start my application for the first time, i would like my hologram already in place !
Well, there is a world anchor component in the holotoolkit. All you have to do is add it to your gameObject.
But, Adding a gameObject with world anchor manager won’t allow you to move the gameObject. If you have any problem let me know.
I read a lot of thing about that. The problem i have is that if i put the object on the right of the origin, when i start my application it will be placed regarding the the place et where i’m looking.
here an exemple of what i want to do :
I scanned a room and get the .obj file. I want to use this file to fix my hologram in unity and then when I start my application, the hololens reconize the room (by comparing the .obj file and the live scanning and then my holograms appears for exemple on the wall i place the gameobject in my unity scene.
Right now, my game object is fixed in relation to the origin position of the hololens. And i would skip the “configuration start” in my application.
So take a scan, place my hologram in unity, deploy, start and voila my holograms are in place
Can i do that with world anchor ? Maybe i use them in a wrong way…
There is a better solution I wanted to say. We’ll, you can find it somewhere over the internet. The downloaded spatial data will act as a GameObject and will be placed right at World position keeping your head as it’s origin. Now, create a separate project and import the Holotoolkit and Examples packages and setup the scene.
Drag the spatial mapping prefab to the Hierarchy and leave it there. (No changes needed)
In your project panel search for Cursor.cs script and open it.
You’ll find on the line 397 a method like the one below:
Change it from:-
public virtual void OnInputClicked(InputClickedEventData eventData)
{
// Open input socket for other cool stuff…
}
To:-
public virtual void OnInputClicked(InputClickedEventData eventData)
{
if (SomeBool)
{
SpatialMappingManager.Instance.StopObserver ();
SomeBool = false;
}
}
As we all know, this method is used for air-tap gesture. So, you can use this method from the script to stop the spatial update by using a bool. And add using HoloToolkit.Unity.SpatialMapping; to get access to the Spatial mapping classes.
Now, you’ll have your own spatial data.
And you can use the same method to place your hologram in the spatial data you’ve created depending on your needs.
My project needs to run on 5 Hololenses so it would be great if I could position the objects within Unity based on the pre-scanned model, instead of finetuning the room for each Hololens using the WorldAnchors.
After searching a lot about how to do that, I think this thread is almost getting close to a working answer. But either I’m missing one instruction, or perhaps the approach is not the right way to achieve the above.
I’ve dragged the pre-scanned room model to the Object Surface Observer and I disabled the “auto start observer” option. But when I view the app on my Hololens, I see a pre-scanned mesh but it still depends on the origin and direction of the camera at launch.
What is the piece of script that puts everything in place? It will need some kind of room scanning to do that, matching the current room to the pre-scanned room. But if the observer is not active, perhaps that matching does not occur?
You can follow this.
The downloaded spatial data will act as a GameObject and will be placed right at World position keeping your head as it’s origin. Which definitely make your spatial data awkwardly placed. Now, create a separate project and import the Holotoolkit and Examples packages and setup the scene.
Drag the spatial mapping prefab to the Hierarchy and leave it there. (No changes needed)
In your project panel search for Cursor.cs script and open it.
You’ll find on the line 397 a method like the one below:
Change it from:-
public virtual void OnInputClicked(InputClickedEventData eventData)
{
// Open input socket for other cool stuff…
}
To:-
public virtual void OnInputClicked(InputClickedEventData eventData)
{
if (SomeBool)
{
SpatialMappingManager.Instance.StopObserver ();
SomeBool = false;
}
}
As we all know, this method is used for air-tap gesture. So, you can use this method from the script to stop the spatial update by using a bool. And add using HoloToolkit.Unity.SpatialMapping; to get access to the Spatial mapping classes.
Now, you’ll have your own spatial data.
And you can use the same method to place your hologram in the spatial data you’ve created depending on your needs.
All you have to do is just scan the room and air tap to stop the scan. There you go, a scanned room with exact details of the room.