from paraview.simple import *
from paraview.servermanager import *
from paraview.vtk.numpy_interface import dataset_adapter as dsa
spruce_smalltif = TIFFSeriesReader(registrationName='spruce_small.tif', FileNames=['/home/franco/Downloads/spruce_small.tif'])
#UpdatePipeline()
median1 = Median(registrationName='Median', Input=spruce_smalltif, KernelSize = [1,1,1])
transform2 = Transform(registrationName='Transform2', Input=spruce_smalltif)
transform2.Transform.Translate = [10.0, 0.0, 0.0]
data=dsa.WrapDataObject(servermanager.Fetch(median1))
it crashes when the fetch is called to be exact, where if i fetch the data from transform2 it does not.
here you have the data if necessary FileSender but doubt that it is the data itself the issue.
adding the `UpdatePipeline()` BEFORE the median filter solves the crash (after the median filter it still crashes.)