]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageGaussianSmooth.xml
* Created vtk package
[bbtk.git] / packages / vtk / src / bbvtkImageGaussianSmooth.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <blackbox name="ImageGaussianSmooth" type="vtkImageAlgorithm">
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 <vtkparent>vtkImageGaussianSmooth</vtkparent>
13
14 <input 
15   name="In" 
16   type="vtkImageData*" 
17   special="vtk input">
18 Input image
19 </input>  
20
21 <output 
22   name="Out" 
23   type="vtkImageData*" 
24   special="vtk output">
25 Output image
26 </output>
27
28 <input 
29   name="StdDevX" 
30   type="double">
31 Standard deviation in direction X
32 </input>
33
34 <input 
35   name="StdDevY" 
36   type="double">
37 Standard deviation in direction Y
38 </input>
39
40 <input 
41   name="StdDevZ" 
42   type="double">
43 Standard deviation in direction Z
44 </input>
45
46 <process>
47 <PRE>
48 SetStandardDeviation(bbGetInputStdDevX(), 
49                      bbGetInputStdDevY(), 
50                      bbGetInputStdDevZ());
51 Update();
52 </PRE>
53 </process>
54
55
56 </blackbox>
57
58