]> Creatis software - crea.git/blob - appli/creaNewProject/NewProject/lib/mySampleLib/myFierceClass3vtkPipeline.cxx
37fe3767e6af6ad31c9c6984f03d356dc187d265
[crea.git] / appli / creaNewProject / NewProject / lib / mySampleLib / myFierceClass3vtkPipeline.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------ */ 
24
25 #include "myFierceClass3vtkPipeline.h"
26
27
28 myFierceClass3vtkPipeline::myFierceClass3vtkPipeline()
29 {
30         filterThreshold = vtkImageThreshold::New();
31         filterThreshold->SetOutputScalarTypeToShort();
32         filterThreshold->SetOutValue(0);
33         filterThreshold->SetInValue(255);       
34         filterGaussian  = vtkImageGaussianSmooth::New();
35         filterGaussian->SetInput( filterThreshold->GetOutput() );
36         filterGaussian->SetStandardDeviations ( 2 , 2 );
37 }
38
39
40 myFierceClass3vtkPipeline::~myFierceClass3vtkPipeline()
41 {
42         filterThreshold->Delete();
43         filterGaussian->Delete();
44 }
45
46
47 void myFierceClass3vtkPipeline::SetImage (vtkImageData *img)
48 {
49    image = img;
50 }
51
52
53 void myFierceClass3vtkPipeline::SetThresholdBetween ( double l, double u )
54 {
55         lower = l;
56         upper = u;
57 }
58
59
60 void myFierceClass3vtkPipeline::Execute()
61 {
62         filterThreshold->SetInput(image);
63         filterThreshold->ThresholdBetween ( lower , upper );
64         filterGaussian->Update();
65 }
66
67 vtkImageData *myFierceClass3vtkPipeline::GetResult()
68 {
69    return filterGaussian->GetOutput();
70 }