1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef VVTOOLSEGMENTATION_H
19 #define VVTOOLSEGMENTATION_H
21 #include <QtDesigner/QDesignerExportWidget>
23 #include "vvToolBase.h"
24 #include "vvToolWidgetBase.h"
25 #include "vvROIActor.h"
26 #include "ui_vvToolSegmentation.h"
28 #include "vtkLookupTable.h"
30 //------------------------------------------------------------------------------
31 class vvToolSegmentation:
32 public vvToolWidgetBase,
33 public vvToolBase<vvToolSegmentation>,
34 private Ui::vvToolSegmentation
38 vvToolSegmentation(vvMainWindowBase * parent=0, Qt::WindowFlags f=0);
39 ~vvToolSegmentation();
41 //-----------------------------------------------------
42 static void Initialize();
43 virtual void InputIsSelected(vvSlicerManager * m);
44 void OpenBinaryImage();
51 void UpdateAndRenderNewMask();
53 //-----------------------------------------------------
56 void KeyPressed(std::string KeyPress);
58 virtual void MousePositionChanged(int slicer);
61 Ui::vvToolSegmentation ui;
62 QSharedPointer<vvROIActor> mRefMaskActor;
63 QSharedPointer<vvROIActor> mCurrentMaskActor;
64 std::vector<QSharedPointer<vvROIActor> > mCurrentCCLActors;
65 vvImage::Pointer mRefMaskImage;
66 vvImage::Pointer mCurrentMaskImage;
67 vvImage::Pointer mCurrentCCLImage;
69 vtkSmartPointer<vtkLookupTable> mDefaultLUTColor;
70 enum { State_Default, State_CCL};
73 QSharedPointer<vvROIActor> CreateMaskActor(vvImage::Pointer image, int i, int colorID, bool BGMode=false);
75 double mCurrentLabelUnderMousePointer;
76 std::vector<double> mCurrentMousePositionInMM;
77 //std::vector<double> mCurrentMousePositionInPixel;
78 double GetBackgroundValue() { return 0; }
79 double GetForegroundValue() { return 1; }
80 long ComputeNumberOfPixels(vvImage::Pointer image, double value);
82 // Compute and store sizes of mask Foreground
83 void UpdateMaskSize(vvImage::Pointer image, long & pix, double & cc);
84 void UpdateMaskSizeLabels();
85 long mRefMaskSizeInPixels;
86 double mRefMaskSizeInCC;
87 long mCurrentMaskSizeInPixels;
88 double mCurrentMaskSizeInCC;
90 }; // end class vvToolSegmentation
91 //------------------------------------------------------------------------------