]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageContinuousDilate3D.xml
a07648630721bd422041b18c698929d3e5870dca
[bbtk.git] / packages / vtk / src / bbvtkImageContinuousDilate3D.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <blackbox name="ImageContinuousDilate3D" type="VTK_ImageAlgorithm">
4
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>
8
9 <include>vtkImageContinuousDilate3D.h</include> 
10 <include>vtkImageData.h</include> 
11
12 <vtkobject>vtkImageContinuousDilate3D</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()->Update();
26 </PRE>
27 </process>
28
29
30 </blackbox>
31
32