How to Display Volume Using Volshow with Exported Configuration from Volume Viewer

4 Ansichten (letzte 30 Tage)
Hi there,
I have a labeled volume as a double file type in my workspace. I opened this in 'volumeviewer' and made some slight changes to display (please see image below).
I then exported the configuration using the 'export' button on volumeviewer. However when I run volshow in the following manner where "newL" is a labelled volume as a double data type and "objectConfig" is the exported configuration from volumeviewer, it simply returns a default display setting (seen below).
Some help on how I can preserve these display settings when exporting would be much appreciated!
Thanks

Antworten (1)

Sufiyan
Sufiyan am 16 Jan. 2024
Bearbeitet: Sufiyan am 16 Jan. 2024
"returns default settings" you mean that the labels are not applied ? if you see the properties in the command window, It says OverlayData is empty.
volshow(newL,objectConfig) will just display the volume of newL(Label volume) using the object properties. It means where ever the lables are marked, It shows the volume of that region.
If you want the labels(colours) to be displayed along with the volume of labels, Add the label data as shown.
hVolume = volshow(newL,objectConfig)
hVolume.OverlayData = newL

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by