View Issue Details

IDProjectCategoryView StatusLast Update
0002906Slicer4Core: GUIpublic2017-06-10 14:36
Reporternicole Assigned Tonicole  
PrioritynormalSeverityblockReproducibilityalways
Status closedResolutionreopened 
PlatformOSlinuxOS Version
Product Version 
Target VersionSlicer 4.7.0Fixed in VersionSlicer 4.7.0 
Summary0002906: Extra model hierarchy nodes showing up in Models module
Description

In trying to debug the model maker I noticed that the previously hidden model hierarchy nodes that point to the models are now being shown in the Models module.
See the attached image, the node with the name "ModelHierarchy" shouldn't be visible.

Steps To Reproduce

Load a model
Go to the Models module
Right click on the scene
Click on "Insert hierarchy"
Drag model under new hierarchy.
Observe that the hierarchy node that is associated with the model is being shown.

Additional Information

I tried looking back in the code: taking out the change to qMRMLSceneHierarchyModel.cxx
made in svn 21544 didn't fix the issue.
Checking out svn 21536 (by mistake, meant to check out 21535) and copying over changed files to my current build led to the correct behaviour.
But looking through the changes made between those two revisions didn't yield an obvious way of fixing it as most of the commits were just in the Annotations module.
It could be that change in the sort filter proxy model in 21586 did it and undoing that by reverting to 21536 fixed it.

TagsAdopted, Deprecation

Relationships

related to 0003462 closedjcfr ModelMaker functionality breaks display of Slice views 
parent of 0003007 closednicole Models are not listed in the models module 

Activities

2013-01-31 09:35

 

finetjul

finetjul

2013-01-31 10:06

administrator   ~0007772

What are the properties of such "ModelHierarchy" node ?
E.g.
What is its classname ?
What is the value of GetHiddenFromEditors?
Does it have an associated node ?
Does it have children ?
Why do you think it should not be visible in Models module ?

nicole

nicole

2013-01-31 10:15

administrator   ~0007773

It's a vtkMRMLModelHierarchyNode
HideFromEditors is 1
Yes
No
Because it wasn't before. :) It's what I've called the 1:1 hierarchy node that just provides the hook for the model node to be plugged into a hierarchy.

finetjul

finetjul

2013-01-31 11:47

administrator   ~0007774

It's visible because the node is Hidden but the tree view show hidden nodes (https://github.com/Slicer/Slicer/blob/master/Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx#L142-143).

So why do you think the Models module shouldn't display the node?
Should all hierarchy nodes with no children but with associated nodes be hidden to the view?

nicole

nicole

2013-01-31 12:04

administrator   ~0007775

Last edited: 2013-01-31 12:29

For the 1:1 model hierarchy nodes (no children, just associated nodes), they've always been set as Hidden but they weren't shown before in the Models GUI. (see ModelsModuleHierarchyBug-AbdominalAtlasBefore.jpg)
This is a recent change to the GUI that makes the model hierarchies look confusing (see second attached image from the abdominal atlas ModelsModuleHierarchyBug-AbdominalAtlas.jpeg). I can drag either the model heirarchy node or the model node to move models into a new hierarchy, but when I drag the one, the other moves automatically and the reason isn't clear.

For the models module, yes, if the model heirarchy node has the hidden flag on, it has an associated node id and no other hierarchy nodes have it as a parent, it shouldn't be visible in the tree. If someone drags a model to be a child of another model, creating a child on the 1:1 model heirarchy node, I'm fine with it staying hidden and just having the visible tree view structure reflect the hierarchy.
The hierarchy nodes added by right clicking should probably not be hidden, that can be changed so that hidden is used to really mean don't show it in the tree views anywhere (the hide from editors flag tends to trip me up as it's on by default).

2013-01-31 12:04

 

2013-01-31 12:29

 

finetjul

finetjul

2013-01-31 14:57

administrator   ~0007776

If it is the case: "all hierarchy nodes with no children but with associated nodes are hidden to the view", then let's take the following example:
A hierarchy model node

  • has the hidden flag
  • has an associated node
  • has 1 child
    it is then visible, now we remove its child:
  • it becomes hidden.

I think we should simply work with the hidden flag.
All the nodes that must be visible by the Models module view should not have the HiddenFromEditors flag.
What do you think ?

nicole

nicole

2013-02-01 05:58

administrator   ~0007782

I'm fine with the example as given, but we should check with Marianna and Ron to be sure that works for them.
I think that using the hidden flag makes sense going forward, but most (all?) of the legacy scenes that we use for the atlases will then display incorrectly.

nicole

nicole

2013-02-01 06:00

administrator   ~0007783

Reminder sent to: kikinis, marianna

Please weigh in on the future and backward compatible behaviour of the Models GUI.

finetjul

finetjul

2013-02-01 06:02

administrator   ~0007784

We can do something similar to:
https://github.com/Slicer/Slicer/blob/master/Libs/MRML/Core/vtkMRMLParser.cxx#L116-121

nicole

nicole

2013-02-01 10:15

administrator   ~0007788

I had a quick chat with Ron, he said that since the scenes that we're talking about aren't that numerous (only the atlases), we could fix them on a case by case basis. He also says that "simpler is better" in terms of the display and having those extra hierarchy nodes showing isn't good.
With the path of fixing the old mrml scenes open, the change I'd want to make in the models module is to set the tree to hide hierarchy nodes that have the hide from editors flag set to true and fix any fall out that results in the tree not looking/working as expected.

nicole

nicole

2013-02-01 13:32

administrator   ~0007790

I chatted with Marianna, she needs drag and drop to work and no extra model hierarchy nodes cluttering up the UI.

Changes needed to fix the models gui starting from current code:

Libs/MRML/Core/vtkMRMLModelHierarchyNode.cxx - set hide from editors to false
Modules/Loadable/Models/Resources/UI/qSlicerModelsModuleWidget.ui - set showHidden to false
Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx - take out call to setShowHiddenForTypes
Libs/MRML/Widgets/qMRMLSceneHierarchyModel.cxx - set hidden true on new 1:1 hierarchy nodes
Modules/CLI/ModelMaker/ModelMaker.cxx - ditto
Base/QTCLI/qSlicerCLIModuleUIHelper.cxx - showHidden is set to true if multiple && aggregate, but it's also used to set a nodeType. Setting show hidden to false and setting the node type by directly checking multiple and aggregate.

Alternately: keep the default being hide from editors is true on the hierarchy node and explicitly set it to false when necessary. Either way, it would probably best to be explicitly setting hide from editors on new hierarchy nodes.

The changes above seem to work, checking them in... see svn 21657.

Marianna will test the nightly build on Monday and leave feedback.

alexy

alexy

2013-02-03 09:00

developer   ~0007791

I agree with Nicole, the low level hierarchy nodes serve as "links" from hierarchy to models, and have no meaning to the user. They should not be visible to the user.

jcfr

jcfr

2013-02-04 08:51

administrator   ~0007796

Following r21657, should this issue be resolved ?
See http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=21657

nicole

nicole

2013-02-04 09:55

administrator   ~0007798

I've had feedback from Marianna: the head and neck atlas as well as the brain atlas are showing no models in the Models gui after r21657. The abdominal atlas is okay. The knee atlas is also fine.
I'm writing a python script to see if I can automate the resetting of the hide from editors flag on model hierarchy nodes so that we can quickly fix the head&neck and brain atlas files.

finetjul

finetjul

2013-02-04 10:06

administrator   ~0007799

How about we add a fix when loading those scenes instead ?
Right now, MRML scenes are saved with a "version" attribute for the "MRML" element. Such value is "Slicer4" but I think it should instead be "4.2.2" or anything more precise than Slicer4.
That way, we can turn the visibility on for all the hierarchy nodes in scenes older than 4.2.3 that are not a 1:1 hierarchy node.

jcfr

jcfr

2013-02-04 10:13

administrator   ~0007800

@Julien: Make sens. Thanks for pointing this out.
@Nicole: What would it take to follow the approach mentioned by Julien ?

nicole

nicole

2013-02-04 10:50

administrator   ~0007802

Last edited: 2013-02-04 11:16

Julien's proposal requires changing the way the mrml files are versioned as well as putting in a special case in the parser. If the versioning can be tied to the "official" version so that it only has to be updated in one place each time, I'm fine with going that route. Otherwise I'm fine with updating the mrml files on a case by case basis.
(we used to version the mrml files by svn revision)

I found an odd thing as I was making the script: after running this in the python terminal, the Models GUI didn't update to show the new settings. I had to save the .mrml file and reload it to see that it had worked:
numNodes = slicer.mrmlScene.GetNumberOfNodesByClass("vtkMRMLModelHierarchyNode")
for h in range(numNodes):
mh = slicer.mrmlScene.GetNthNodeByClass(h, "vtkMRMLModelHierarchyNode")
if mh.GetNumberOfChildrenNodes() > 0:
print "Showing", mh.GetName()
mh.SetHideFromEditors(0)
if mh.GetNumberOfChildrenNodes() == 0 and mh.GetAssociatedNodeID() != None:
print "Hiding", mh.GetName()
mh.SetHideFromEditors(1)

finetjul

finetjul

2013-02-04 11:14

administrator   ~0007805

The odd behavior is due to an optimization of the models.
https://github.com/Slicer/Slicer/blob/master/Libs/MRML/Widgets/qMRMLSortFilterProxyModel.cxx#L223
When the node has the flag HideFromEditors to 1, then the model doesn't observe the node to see if such flag has changed.
My understanding was that such property are not meant to change within the entire life of a node.
If it appear to be the case, then line 223 could be changed to RejectButPotentiallyAcceptable (however it would have to be further refined. Don't return RejectButPotentiallyAcceptable if the node type is wrong).

jcfr

jcfr

2013-02-04 11:35

administrator   ~0007806

@Julien/nicole: If the property is expected to be read-only, no setter should exist. If a setter exist, we should assume it can be updated using the python console.

@nicole: Updating the mrml on case by case is counter productive. Yes, the versioning of MRML should be associated with a specific version set at one single location. I would vote for a MRML specific version that we would set in the Libs/MRML/Core/CMakeLists.txt

nicole

nicole

2013-02-04 11:37

administrator   ~0007807

It's more of a developer action to change that flag while debugging a module. I'm a bit worried that with the optimisations that you can get into a state where you want the tree to update but it's not possible to do. Maybe add a hot key or only in python "force update" operation to the trees?

finetjul

finetjul

2013-02-04 11:42

administrator   ~0007808

for the tree views, there is the undocumented '!' key :-)

jcfr

jcfr

2013-02-04 11:43

administrator   ~0007809

Last edited: 2013-02-04 11:43

If such change are made only from python, waiting time shouldn't be an issue. I would suggest we keep things simple and avoid "forceupdate", "hot key", ... etc

The optimization done by Julien was done with an implicit knowledge, we should either:

  • document the optimization + (add warning in the setter ?)
  • remove the optimization
  • document + enforce the optimization by construction/design (removing the setter)

If such case is reserved to a handful of developer, documenting should be enough.

nicole

nicole

2013-02-04 12:10

administrator   ~0007811

The main reason I'm hesitating over removing the Set call is that the mrml nodes have hide from editors set to true by default. Every time a developer makes a new mrml node, they have to decide if they want their node to show up in drop down menus and in mrml tree views and in any other node lists. Sometimes they want them in one but not the other(s) and use the show hidden flag. The change that triggered this bug report has led to a change in Slicer's default behaviour in the trees that resulted in my changes to work around those changes, so I'd like to add this topic to the developer hangout tomorrow, I'd like to get Steve and Alex's input on it before we make even more changes.

finetjul

finetjul

2013-02-04 12:19

administrator   ~0007812

Documentation has been added in r21661.
I believe nodes should be visible by default (HideFromEditors = 0).
Maybe the behavior of HideFromEditors could be extended. (a list of tags instead of being only a on/off value).

Lchauvin

Lchauvin

2013-07-13 08:12

developer   ~0009043

Is this bug fixed ? I saw Nicole fixed the parent issue.

nicole

nicole

2013-08-27 12:19

administrator   ~0009643

Last edited: 2013-08-27 12:21

Looks like the original bug is fixed, can't reproduce it in the current svn trunk.

jcfr

jcfr

2014-03-06 05:22

administrator   ~0011173

Closing resolved issues that have not been updated in more than 3 months

nicole

nicole

2014-03-10 14:29

administrator   ~0011408

Hide from editors default change commited as svn 22937:
http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=22937

nicole

nicole

2014-03-11 10:35

administrator   ~0011421

Quick test to instatiate all but slice nodes:
numNodeClasses = slicer.mrmlScene.GetNumberOfRegisteredNodeClasses()
for i in range(numNodeClasses):
className = slicer.mrmlScene.GetNthRegisteredNodeClass(i).GetClassName()
print className
if className != 'vtkMRMLSliceNode':
newNode = slicer.mrmlScene.CreateNodeByClass(className)
newNode.SetName('test node ' + className)
slicer.mrmlScene.AddNode(newNode)

See NotHiddenFromEditorsDataGUI attachment.

2014-03-11 10:35

 

NotHiddenFromEditorsDataGUI.tiff (272,814 bytes)
nicole

nicole

2015-12-02 12:38

administrator   ~0013656

Pull request to change Slicer MRML core nodes:
https://github.com/Slicer/Slicer/pull/428
Pull request to change OpenIGTLinkIF nodes:
https://github.com/openigtlink/OpenIGTLinkIF/pull/59

nicole

nicole

2016-03-31 15:04

administrator   ~0013850

OpenIGTLinkIF fix is in:
https://github.com/openigtlink/OpenIGTLinkIF/commit/32fd763272f728b8885f0f01b7ecae4ff6cebe44
Slicer MRML core nodes fix is in:
http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=24995

lassoan

lassoan

2017-06-09 23:55

developer   ~0014712

Based on the comments, the issue seems to have been fixed.

Related Changesets

Slicer: 2145-support-for-installing-extension-from-file 0c90ed34

2013-02-01 18:32:24

naucoin

Details Diff
BUG: adjust hidden flag on model hierarchy nodes to get back to previous behaviour

Libs/MRML/Core/vtkMRMLModelHierarchyNode.cxx - set hide from editors to false as a default
Modules/Loadable/Models/Resources/UI/qSlicerModelsModuleWidget.ui - set showHidden to false
Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx - take out call to setShowHiddenForTypes
Libs/MRML/Widgets/qMRMLSceneHierarchyModel.cxx - set hidden true on new 1:1 hierarchy nodes
Modules/CLI/ModelMaker/ModelMaker.cxx - ditto
Base/QTCLI/qSlicerCLIModuleUIHelper.cxx - set show hidden to false and setting the node type by directly checking multiple and aggregate.

Issue 0002906



git-svn-id: http://svn.slicer.org/Slicer4/trunk@21657 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTCLI/qSlicerCLIModuleUIHelper.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLModelHierarchyNode.cxx Diff File
mod - Libs/MRML/Widgets/qMRMLSceneHierarchyModel.cxx Diff File
mod - Modules/CLI/ModelMaker/ModelMaker.cxx Diff File
mod - Modules/Loadable/Models/Resources/UI/qSlicerModelsModuleWidget.ui Diff File
mod - Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx Diff File

Import 2017-06-07 23:51:09: master 58453b94

2014-03-10 18:27:24

naucoin

Details Diff
ENH: default value of HideFromEditors flag set to 0

This change will cause new mrml nodes to not be hidden
from editors by default, developers subclassing
vtkMRMLNode will need to specify the following in
constructors to over ride this behaviour:
this->HideFromEditors = 1;

MRML Core nodes that should be hidden in the Data module
were updated to stay hidden.

From the Slicer Roadmap for 4.4:
https://www.slicer.org/slicerWiki/index.php/Roadmap#4.4

Issue 0002906



git-svn-id: http://svn.slicer.org/Slicer4/trunk@22937 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/vtkMRMLCrosshairNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLDisplayNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLInteractionNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLScriptedModuleNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLSelectionNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLSliceCompositeNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLStorageNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLUnitNode.cxx Diff File

Slicer: 490-qMRMLSceneHierarchyModel-avoid-extra-scene-lookup 6b2539c1

2016-03-31 14:56:06

naucoin

Details Diff
BUG: fix hide from editor flag on volume rendering nodes

The volume rendering nodes are appearing in the Data tree
after the change to set the default of the hide from editors
flag to false on the MRML node superclass.
This change sets them hidden by default and sets up the
display node combo box to show them in the Volume
Rendering Inputs panel.

Issue 0002906

git-svn-id: http://svn.slicer.org/Slicer4/trunk@24995 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLCPURayCastVolumeRenderingDisplayNode.cxx Diff File
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLGPURayCastVolumeRenderingDisplayNode.cxx Diff File
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLVolumeRenderingScenarioNode.cxx Diff File
mod - Modules/Loadable/VolumeRendering/Resources/UI/qSlicerVolumeRenderingModuleWidget.ui Diff File

Import 2017-06-07 23:51:09: master 6b2539c1

2016-03-31 14:56:06

naucoin

Details Diff
BUG: fix hide from editor flag on volume rendering nodes

The volume rendering nodes are appearing in the Data tree
after the change to set the default of the hide from editors
flag to false on the MRML node superclass.
This change sets them hidden by default and sets up the
display node combo box to show them in the Volume
Rendering Inputs panel.

Issue 0002906

git-svn-id: http://svn.slicer.org/Slicer4/trunk@24995 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLCPURayCastVolumeRenderingDisplayNode.cxx Diff File
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLGPURayCastVolumeRenderingDisplayNode.cxx Diff File
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLVolumeRenderingScenarioNode.cxx Diff File
mod - Modules/Loadable/VolumeRendering/Resources/UI/qSlicerVolumeRenderingModuleWidget.ui Diff File

Issue History

Date Modified Username Field Change
2013-01-31 09:35 nicole New Issue
2013-01-31 09:35 nicole Status new => assigned
2013-01-31 09:35 nicole Assigned To => finetjul
2013-01-31 09:35 nicole File Added: ModelsModuleHierarchyBug.jpeg
2013-01-31 10:06 finetjul Note Added: 0007772
2013-01-31 10:15 nicole Note Added: 0007773
2013-01-31 11:47 finetjul Note Added: 0007774
2013-01-31 12:04 nicole Note Added: 0007775
2013-01-31 12:04 nicole File Added: ModelsModuleHierarchyBug-AbdominalAtlas.jpeg
2013-01-31 12:29 nicole File Added: ModelsModuleHierarchyBug-AbdominalAtlasBefore.jpg
2013-01-31 12:29 nicole Note Edited: 0007775
2013-01-31 14:57 finetjul Note Added: 0007776
2013-02-01 05:58 nicole Note Added: 0007782
2013-02-01 06:00 nicole Note Added: 0007783
2013-02-01 06:02 finetjul Note Added: 0007784
2013-02-01 10:15 nicole Note Added: 0007788
2013-02-01 13:32 nicole Note Added: 0007790
2013-02-03 09:00 alexy Note Added: 0007791
2013-02-04 08:51 jcfr Note Added: 0007796
2013-02-04 09:55 nicole Note Added: 0007798
2013-02-04 10:06 finetjul Note Added: 0007799
2013-02-04 10:13 jcfr Note Added: 0007800
2013-02-04 10:50 nicole Note Added: 0007802
2013-02-04 11:14 finetjul Note Added: 0007805
2013-02-04 11:16 nicole Note Edited: 0007802
2013-02-04 11:35 jcfr Note Added: 0007806
2013-02-04 11:37 nicole Note Added: 0007807
2013-02-04 11:42 finetjul Note Added: 0007808
2013-02-04 11:43 jcfr Note Added: 0007809
2013-02-04 11:43 jcfr Note Edited: 0007809
2013-02-04 12:10 nicole Note Added: 0007811
2013-02-04 12:19 finetjul Note Added: 0007812
2013-02-12 09:37 jcfr Target Version Slicer 4.2.3 => Slicer 4.3.0
2013-02-15 10:59 finetjul Tag Attached: Deprecation
2013-02-22 14:20 jcfr Tag Attached: Adopted
2013-02-22 14:21 jcfr Assigned To finetjul => Lchauvin
2013-03-13 11:18 nicole Relationship added parent of 0003007
2013-07-13 08:12 Lchauvin Note Added: 0009043
2013-08-27 12:19 nicole Note Added: 0009643
2013-08-27 12:19 nicole Status assigned => resolved
2013-08-27 12:19 nicole Fixed in Version => Slicer 4.3.0
2013-08-27 12:19 nicole Resolution open => fixed
2013-08-27 12:21 nicole Note Edited: 0009643
2014-03-06 05:22 jcfr Note Added: 0011173
2014-03-06 05:23 jcfr Status resolved => closed
2014-03-10 14:29 nicole Assigned To Lchauvin => nicole
2014-03-10 14:29 nicole Note Added: 0011408
2014-03-10 14:29 nicole Status closed => feedback
2014-03-10 14:29 nicole Resolution fixed => reopened
2014-03-11 10:35 nicole Note Added: 0011421
2014-03-11 10:35 nicole File Added: NotHiddenFromEditorsDataGUI.tiff
2015-11-03 19:36 jcfr Status feedback => assigned
2015-11-03 19:36 jcfr Fixed in Version Slicer 4.3.0 =>
2015-11-03 19:36 jcfr Target Version Slicer 4.3.0 => Slicer 4.5.0-1
2015-11-03 19:37 jcfr Relationship added related to 0003462
2015-11-03 20:32 jcfr Relationship added related to 0003126
2015-11-03 20:33 jcfr Relationship deleted related to 0003126
2015-11-10 14:50 jcfr Target Version Slicer 4.5.0-1 => Slicer 4.5.1
2015-12-02 12:38 nicole Note Added: 0013656
2016-03-31 15:04 nicole Note Added: 0013850
2016-10-12 02:56 jcfr Target Version Slicer 4.5.1 => Slicer 4.7.0
2017-06-06 23:19 Changeset attached => Import 2017-06-06 21:34:24 490-qMRMLSceneHierarchyModel-avoid-extra-scene-lookup 6b2539c1
2017-06-07 23:27 Changeset attached => Slicer 490-qMRMLSceneHierarchyModel-avoid-extra-scene-lookup 6b2539c1
2017-06-07 23:27 Changeset attached => Slicer 2145-support-for-installing-extension-from-file 0c90ed34
2017-06-09 23:55 lassoan Status assigned => closed
2017-06-09 23:55 lassoan Note Added: 0014712
2017-06-10 08:51 Changeset attached => Slicer master 6b2539c1
2017-06-10 08:51 Changeset attached => Slicer master 58453b94
2017-06-10 14:36 jcfr Fixed in Version => Slicer 4.7.0