NorMIT-nav  2023.01.05-dev+develop.0da12
An IGT application
cxPrepareVesselsWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 #ifndef CXPREPAREVESSELSWIDGET_H
12 #define CXPREPAREVESSELSWIDGET_H
13 
15 #include "cxColorPropertyBase.h"
16 #include "cxPipeline.h"
17 #include "cxFilter.h"
18 
19 class QPushButton;
20 class QVBoxLayout;
21 
22 namespace cx
23 {
24 
36 {
37  Q_OBJECT
38 
39 public:
40  PrepareVesselsWidget(RegServicesPtr services, QWidget* parent);
41  virtual ~PrepareVesselsWidget();
42 
43 protected:
44  QVBoxLayout* mLayout;
45 
46 private slots:
47  void setColorSlot();
48  void toMovingSlot();
49  void toFixedSlot();
50 
51 protected:
55 };
56 
57 }//namespace cx
58 
59 #endif // CXPREPAREVESSELSWIDGET_H
cx::PrepareVesselsWidget::~PrepareVesselsWidget
virtual ~PrepareVesselsWidget()
Definition: cxPrepareVesselsWidget.cpp:104
cx::PrepareVesselsWidget::mColorProperty
ColorPropertyBasePtr mColorProperty
Definition: cxPrepareVesselsWidget.h:54
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cx::PrepareVesselsWidget::mPipelineWidget
class PipelineWidget * mPipelineWidget
Definition: cxPrepareVesselsWidget.h:52
cx::RegistrationBaseWidget
Definition: cxRegistrationBaseWidget.h:28
cx::PipelineWidget
Definition: cxPipelineWidget.h:59
cx::PrepareVesselsWidget::mPipeline
PipelinePtr mPipeline
Definition: cxPrepareVesselsWidget.h:53
cxFilter.h
cxPipeline.h
cx::PrepareVesselsWidget::mLayout
QVBoxLayout * mLayout
Definition: cxPrepareVesselsWidget.h:44
cx::PipelinePtr
boost::shared_ptr< Pipeline > PipelinePtr
Definition: cxPipeline.h:146
cxRegistrationBaseWidget.h
cx::RegServicesPtr
boost::shared_ptr< class RegServices > RegServicesPtr
Definition: cxRegServices.h:20
cx::PrepareVesselsWidget
Widget for extracting a segment from a image and finding a centerline from that segment.
Definition: cxPrepareVesselsWidget.h:35
cx::ColorPropertyBasePtr
boost::shared_ptr< class ColorPropertyBase > ColorPropertyBasePtr
Definition: cxForwardDeclarations.h:139
cxColorPropertyBase.h
cx::PrepareVesselsWidget::PrepareVesselsWidget
PrepareVesselsWidget(RegServicesPtr services, QWidget *parent)
Definition: cxPrepareVesselsWidget.cpp:35