Interpolation between slices not active when load image

Operating system:Windows 10
Slicer version:4.1120200930
Expected behavior:In previous versions, when I load an image, it was automatically interpolating the slices i.e. “Interpolate” option in Volume module was checked.
Actual behavior:In the latest version, this option is not active by default, and I have to check every time I load image. Is there a way to have it always activated w/o actually activating all the time?

Thanks,
Rayan

It is due to SlicerMorph overriding some default settings - see Volume display - Interpolate turned off by default in newest stable?.

@muratmaga Please change SlicerMorph so that it does not silently override application settings (disabling interpolation is particularly undesirable, but other settings may be unexpected, too), If you want to expose additional application settings to users then you can do that by a few short Python code snippets, for example:

There is already a SlicerMorph panel that all of this can be disabled. (Application Settings->SlicerMorph uncheck use SlicerMorph specific customizations ).

@pieper can we make this opt-in instead of opt-out? It is automatically enabled when SlicerMorph is installed.

It would be better to show the actual settings, one by one, each with its own checkbox, instead of a single all-or-nothing “SlicerMorph customization” option.

Yes, we have full control over the customization options and can choose what to expose with a UI and what to leave as code for advanced use cases.

I’ve checked SlicerMorph customizations and they should be mostly moved to Slicer core:

  • Use compression in saved files by default => we should add to Slicer core application settings
  • Default file format for models: this can cause data loss, as it changes file format used in mrb files to ply, which means that you lose all scalar data associated with cells and points when you save the scene as mrb => this should be disabled by default until we implement at least a warning reporting mechanism from inside mrb file saving (that we want to implement anyway)
  • Interpolated image display - we have already discussed this => we should show the image grid instead of introducing artifacts (voxel edge boundaries) in the displayed image
  • Hiding Slicer logo => we should fix this in Slicer core (move it where it does not take extra space)
  • additional menu shortcuts: OK to do it for SlicerMorph (you don’t change any core behavior, just add SlicerMorph specific content)
  • Data probe collapsed by default => should be an application option (or just remember the last state in application settings)
  • Cycle segment editor effects => we cshuld add it to default segment editor shortcuts (useful for digitizer boards and wheels)

Actually we disable compression by default.

Also that file slightly out date and is now replaced with this that has few additional customizations.