<html><body><div style="color:#000; background-color:#fff; font-family:arial, helvetica, sans-serif;font-size:10pt">Hello,<br><br>I'm using ParaView 4.01 32 bit and trying out an example Python programmable filter, however it seems I am unable to use some VTK methods and get the resulting errors:<br><br>Traceback (most recent call last):<br>File "&lt;string&gt;", line 21, in &lt;module&gt;<br>File "&lt;string&gt;", line 7, in RequestData<br>AttributeError: SetInput<br><br>Here is the example taken from the wiki that produces this error<br><br>pinput = vtk.vtkImageData()<br>pinput.SetExtent(0, 10, 0, 10, 0, 10)<br>pinput.SetOrigin(0, 1, 0)<br>pinput.SetSpacing(0.5, 0.5, 0.5)<br>probe = vtk.vtkProbeFilter()<br>probe.SetInput(pinput)<br>input_copy = inputs[0].NewInstance()<br>input_copy.UnRegister(None)<br>input_copy.ShallowCopy(inputs[0].VTKObject)<br>probe.SetSource(input_copy)<br>probe.Update()<br>output.ShallowCopy(probe.GetOutput())<br><br>The other
 filters on the wiki that don't use include the use of VTK filters work fine, e.g. the script called "transform the input" works just fine.&nbsp; Does anyone know what I'm missing?<br><br>John<br><br><div><br></div></div></body></html>