]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageContinuousErode3D.xml
2344 BBTK Bug New Normal Conflict between Update and Modfied vtk filters
[bbtk.git] / packages / vtk / src / bbvtkImageContinuousErode3D.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <blackbox name="ImageContinuousErode3D" type="VTK_ImageAlgorithm">
4
5 <author>eduardo.davila at creatis.insa-lyon.fr</author>
6 <description><PRE>replaces a pixel with the maximum 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>
8
9 <include>vtkImageContinuousErode3D.h</include> 
10 <include>vtkImageData.h</include> 
11
12 <vtkobject>vtkImageContinuousErode3D</vtkobject>
13
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"/>
19
20 <process>
21 <PRE>
22 bbGetVtkObject()->SetKernelSize(bbGetInputKernelSizeX(), 
23               bbGetInputKernelSizeY(), 
24               bbGetInputKernelSizeZ());
25 bbGetVtkObject()->Modified();
26 bbGetVtkObject()->Update();
27 </PRE>
28 </process>
29
30
31 </blackbox>
32
33