]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageGaussianSmooth.xml
b7450d2a12bb5a92fac8572651377bfab99d59d1
[bbtk.git] / packages / vtk / src / bbvtkImageGaussianSmooth.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <blackbox name="ImageGaussianSmooth" type="VTK_ImageAlgorithm">
4
5 <author>laurent.guigues at creatis.insa-lyon.fr</author>
6 <description><PRE>Performs a gaussian convolution of the input image (bbfication of vtkImageGaussianSmooth)</PRE></description>
7 <category>image;filter</category>
8
9 <include>vtkImageGaussianSmooth.h</include> 
10 <include>vtkImageData.h</include> 
11
12 <vtkobject>vtkImageGaussianSmooth</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="StdDevX" type="double"                             description="Standard deviation in direction X"/>
17 <input name="StdDevY" type="double"                             description="Standard deviation in direction Y"/>
18 <input name="StdDevZ" type="double"                             description="Standard deviation in direction Z"/>
19
20 <process>
21 <PRE>
22     printf("EED ImageGaussianSmooth::Process start \n");
23     bbGetVtkObject()->SetStandardDeviation(bbGetInputStdDevX(), 
24                                         bbGetInputStdDevY(), 
25                                         bbGetInputStdDevZ());
26     bbGetVtkObject()->Update();
27     printf("EED ImageGaussianSmooth::Process end \n");
28 </PRE>
29
30 </process>
31
32
33 </blackbox>
34
35