Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
vtkFractionalLabelmapToClosedSurfaceConversionRule.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Copyright (c) Laboratory for Percutaneous Surgery (PerkLab)
4 Queen's University, Kingston, ON, Canada. All Rights Reserved.
5
6 See COPYRIGHT.txt
7 or http://www.slicer.org/copyright/copyright.txt for details.
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14
15 This file was originally developed by Kyle Sunderland, PerkLab, Queen's University
16 and was supported through the Applied Cancer Research Unit program of Cancer Care
17 Ontario with funds provided by the Ontario Ministry of Health and Long-Term Care
18
19==============================================================================*/
20
21#ifndef __vtkFractionalLabelmapToClosedSurfaceConversionRule_h
22#define __vtkFractionalLabelmapToClosedSurfaceConversionRule_h
23
24// SegmentationCore includes
27#include "vtkSegmentationCoreConfigure.h"
28
35{
36public:
38 static const std::string GetFractionalLabelMapOversamplingFactorParameterName() { return "Fractional labelmap oversampling factor"; };
39 static const std::string GetThresholdFractionParameterName() { return "Threshold fraction"; };
40
41public:
45
49 vtkDataObject* ConstructRepresentationObjectByRepresentation(std::string representationName) override;
50
54 vtkDataObject* ConstructRepresentationObjectByClass(std::string className) override;
55
57 bool Convert(vtkSegment* segment) override;
58
60 unsigned int GetConversionCost(vtkDataObject* sourceRepresentation=nullptr, vtkDataObject* targetRepresentation=nullptr) override;
61
63 const char* GetName() override { return "Fractional labelmap to closed surface"; };
64
67
70
71protected:
72
76 void PadLabelmap(vtkOrientedImageData* fractionalLabelMap, double paddingConstant);
77
78protected:
81
82private:
84 void operator=(const vtkFractionalLabelmapToClosedSurfaceConversionRule&) = delete;
85};
86
87#endif
vtkSegmentationConverterRule * CreateRuleInstance() override
vtkDataObject * ConstructRepresentationObjectByRepresentation(std::string representationName) override
unsigned int GetConversionCost(vtkDataObject *sourceRepresentation=nullptr, vtkDataObject *targetRepresentation=nullptr) override
Get the cost of the conversion.
bool Convert(vtkSegment *segment) override
Update the target representation based on the source representation.
static const std::string GetFractionalLabelMapOversamplingFactorParameterName()
Conversion parameter: magnification factor.
vtkDataObject * ConstructRepresentationObjectByClass(std::string className) override
const char * GetName() override
Human-readable name of the converter rule.
void PadLabelmap(vtkOrientedImageData *fractionalLabelMap, double paddingConstant)
static vtkFractionalLabelmapToClosedSurfaceConversionRule * New()
const char * GetTargetRepresentationName() override
Human-readable name of the target representation.
const char * GetSourceRepresentationName() override
Human-readable name of the source representation.
Image data containing orientation information.
This class encapsulates a segment that is part of a segmentation.
Definition vtkSegment.h:45
static const char * GetSegmentationFractionalLabelmapRepresentationName()
static const char * GetSegmentationClosedSurfaceRepresentationName()