Operating system: windows 10
Slicer version: 4.11
Expected behavior: would like to control enable/disable the option of “interpolated cropped”
Actual behavior:
I am doing cropping volumes via python coding, use the following code to reach “cropvolume” ==>
cropVolumeNode = slicer.vtkMRMLCropVolumeParametersNode()
cropVolumeNode.SetScene(slicer.mrmlScene)
cropVolumeNode.SetIsotropicResampling(True)
cropVolumeNode.SetSpacingScalingConst(1.0)
slicer.mrmlScene.AddNode(cropVolumeNode)
cropVolumeNode.SetName(‘NewlyCropped’)
so here how disable/enable the interpolation option for the cropvolume?
thanks