1 <?xml version="1.0" encoding="iso-8859-1"?>
3 <blackbox name="ImageContinuousDilate3D" type="VTK_ImageAlgorithm">
5 <author>eduardo.davila at creatis.insa-lyon.fr</author>
6 <description><PRE>replaces a pixel with the minimum over an ellipsoidal neighborhood. If KernelSize of an axis is 1, no processing is done on that axis.</PRE></description>
7 <category>image;filter</category>
9 <include>vtkImageContinuousDilate3D.h</include>
10 <include>vtkImageData.h</include>
12 <vtkobject>vtkImageContinuousDilate3D</vtkobject>
14 <input name="In" type="vtkImageData*" special="vtk input" description="Input image"/>
15 <output name="Out" type="vtkImageData*" special="vtk output" description="Output image"/>
16 <input name="KernelSizeX" type="int" description="Size of the kernel in direction X"/>
17 <input name="KernelSizeY" type="int" description="Size of the kernel in direction Y"/>
18 <input name="KernelSizeZ" type="int" description="Size of the kernel in direction Z"/>
22 bbGetVtkObject()->SetKernelSize(bbGetInputKernelSizeX(),
23 bbGetInputKernelSizeY(),
24 bbGetInputKernelSizeZ());
25 bbGetVtkObject()->Modified();
26 bbGetVtkObject()->Update();