]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageContinuousErode3D.xml
#3489 vtk9itk5wx3-macos
[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 <include>vtkVersion.h</include>
12
13 <vtkobject>vtkImageContinuousErode3D</vtkobject>
14
15 <input name="In"          type="vtkImageData*" special="vtk input"     description="Input image"/>
16 <output name="Out"        type="vtkImageData*" special="vtk output"    description="Output image"/>
17 <input name="KernelSizeX" type="int"                                   description="Size of the kernel in direction X"/>
18 <input name="KernelSizeY" type="int"                                   description="Size of the kernel in direction Y"/>
19 <input name="KernelSizeZ" type="int"                                   description="Size of the kernel in direction Z"/>
20
21 <process>
22 <PRE>
23 bbGetVtkObject()->SetKernelSize(bbGetInputKernelSizeX(), 
24               bbGetInputKernelSizeY(), 
25               bbGetInputKernelSizeZ());
26 bbGetVtkObject()->Modified();
27 bbGetVtkObject()->Update();
28 </PRE>
29 </process>
30
31
32 </blackbox>
33
34