]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkImageGaussianSmooth.xml
* Created vtk package
[bbtk.git] / packages / vtk / src / bbvtkImageGaussianSmooth.xml
diff --git a/packages/vtk/src/bbvtkImageGaussianSmooth.xml b/packages/vtk/src/bbvtkImageGaussianSmooth.xml
new file mode 100644 (file)
index 0000000..95e73cc
--- /dev/null
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+
+<blackbox name="ImageGaussianSmooth" type="vtkImageAlgorithm">
+
+<author>laurent.guigues at creatis.insa-lyon.fr</author>
+<description><PRE>Performs a gaussian convolution of the input image (bbfication of vtkImageGaussianSmooth)</PRE></description>
+<category>image;filter</category>
+
+<include>vtkImageGaussianSmooth.h</include> 
+<include>vtkImageData.h</include> 
+
+<vtkparent>vtkImageGaussianSmooth</vtkparent>
+
+<input 
+  name="In" 
+  type="vtkImageData*" 
+  special="vtk input">
+Input image
+</input>  
+
+<output 
+  name="Out" 
+  type="vtkImageData*" 
+  special="vtk output">
+Output image
+</output>
+
+<input 
+  name="StdDevX" 
+  type="double">
+Standard deviation in direction X
+</input>
+
+<input 
+  name="StdDevY" 
+  type="double">
+Standard deviation in direction Y
+</input>
+
+<input 
+  name="StdDevZ" 
+  type="double">
+Standard deviation in direction Z
+</input>
+
+<process>
+<PRE>
+SetStandardDeviation(bbGetInputStdDevX(), 
+                     bbGetInputStdDevY(), 
+                     bbGetInputStdDevZ());
+Update();
+</PRE>
+</process>
+
+
+</blackbox>
+
+