Export 3d model to Hololens 2 device

Good morning,
I need to export a 3d model from Slicer to the Hololens 2 device (MRTK 2.8.3).

I performed segmentation on 3d slicer (Segment Editor) and I used OpenAnatomy module to export the segmentation part as gltf.

Using the 3d viewer library of MRTK 2.8.3, the file cannot be opened.

Can I have information about the best way to export a segmentation model obtained from 3d slicer in order to be imported in Hololens 2 as a hologram?

Thanks

Do you use Unity? Do you plan to embed your models into the application and rebuild the application for each patient case?

Javier Pascau’s group implemented solutions for avoiding this tedious rebuilding step of the application for each patient (or using dropbox, etc. to transfer the file) and implemented sending of segmentations to Unity applications directly from Slicer in a few seconds via OpenIGTLink. They also implemented real-time sending of transforms, so you can move objects either using the HoloLens or in Slicer and all positions are synchronized.

Thank you very much for reply.
We don’t use embedded models but these are loaded from the Hololens file system or from a remote web server.
We use Unity for the development of the Hololens2 app.
Actually we are interested in using the optimal parameters to export 3d model from slicer to Hololens 2. Which is the procedure to do it?
Thanks

Hello Caterina,
If I understood correctly, you want to create a 3D model from a segmentation in 3D Slicer, and then import it to Unity (and ultimately, to Microsoft HoloLens 2). I recommend you follow these steps:

  1. Once you have finished your segmentation on Segment Editor, go to Segmentations module.
  2. Scroll down to the “Export/Import models and labelmaps” section.
  3. Set the operation to “Export” and the output type to “Models”. Click on “Export” button.
  4. You should see now all 3D models corresponding to your segmentation in the “Models” module.
  5. Go to “Save” in the upper left corner in 3D Slicer and select the models you want to save. Make sure you save them all as Wavefront OBJ (.obj extension). This is the 3D model format recognized in Unity.
  6. Open Unity and simply drag and drop your .obj files into the desired Assets folder. You can now work with them just like with any GameObject in the scene.

NOTE: 3D Slicer and Unity work with different metric (mm vs m). Depending on your application, you may want to scale all your models in Unity with a factor of 0.001.

NOTE 2: Some 3D models may be too large for some applications. Please, consider decimating them using the Surface Toolbox in 3D Slicer.

NOTE 3: When you save the .obj files in 3D Slicer, a .mtl file is also saved. You can also import this file next to the .obj in Unity to preserve your model’s texture.

I hope this helps. Please, reply if you have any more issues.

1 Like