Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
segmentationwidget.h
Go to the documentation of this file.
1 #ifndef SEGMENTATIONWIDGET_H
2 #define SEGMENTATIONWIDGET_H
3 
4 #include "segmentationtool.h"
5 
6 #include <QWidget>
7 
8 namespace Ui {
9  class Segmentationwidget;
10 }
11 
12 class SegmentationWidget : public QWidget {
13  Q_OBJECT
14 
15 public:
16  explicit SegmentationWidget( QWidget *parent = 0 );
18  void setTool( Tool *sTool );
19 
20 private slots:
21 
22  void on_SegmentationButton_clicked( );
23  void on_eraserButton_clicked( );
24  void on_drawButton_clicked( );
25  void on_ClearButton_clicked( );
26 
27  void on_AlphaSpinBox_valueChanged( double arg1 );
28 
29  void on_BetaSpinBox_valueChanged( double arg1 );
30 
31  void on_pushButtonShowSeeds_clicked( bool checked );
32 
33  void on_pushButtonShowMask_clicked( bool checked );
34 
35  void on_thickDoubleSpinBox_valueChanged( double arg1 );
36 
37 private:
38  Ui::Segmentationwidget *ui;
39  SegmentationTool *tool;
40 };
41 
42 #endif /* SEGMENTATIONWIDGET_H */
Definition: tool.h:10