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
vtkMRMLSegmentationDisplayNode.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Program: 3D Slicer
4
5 Copyright (c) Laboratory for Percutaneous Surgery (PerkLab)
6 Queen's University, Kingston, ON, Canada. All Rights Reserved.
7
8 See COPYRIGHT.txt
9 or http://www.slicer.org/copyright/copyright.txt for details.
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 This file was originally developed by Csaba Pinter, PerkLab, Queen's University
18 and was supported through the Applied Cancer Research Unit program of Cancer Care
19 Ontario with funds provided by the Ontario Ministry of Health and Long-Term Care
20
21==============================================================================*/
22
23#ifndef __vtkMRMLSegmentationDisplayNode_h
24#define __vtkMRMLSegmentationDisplayNode_h
25
26#include "vtkMRMLDisplayNode.h"
27
28#include <set>
29
31class vtkSegmentation;
32class vtkStringArray;
33class vtkVector3d;
34
35
40{
41public:
42 // Define constants
43 static const double SEGMENT_COLOR_NO_OVERRIDE;
44
47 {
50 double OverrideColor[3];
52 bool Visible{true}; // Turns visibility on/off in general. Useful for allowing the user to show/hide a segment without changing any detailed visibility options.
53 bool Visible3D{true};
54 bool Visible2DFill{true}; // This one is used for labelmap volume related operations (color table, merged labelmap)
55 bool Visible2DOutline{true};
57 double Opacity3D{1.0};
58 double Opacity2DFill{1.0}; // This one is used for labelmap volume related operations (color table, merged labelmap)
59 double Opacity2DOutline{1.0};
61 bool Pickable{true};
62
63 // Initialize with default values
70
71 // Automatically generated operator= and copy constructor work
72 // correctly for these members, so there is no need to define them.
73
74 bool operator==(const SegmentDisplayProperties& rhs) const
75 {
76 // color comparison
77 for (int i = 0; i < 3; ++i)
78 {
79 if (fabs(OverrideColor[i] - rhs.OverrideColor[i]) > VTK_DBL_EPSILON)
80 {
81 return false;
82 }
83 }
84 return
85 Visible == rhs.Visible &&
86 Visible3D == rhs.Visible3D &&
89 Opacity3D == rhs.Opacity3D &&
92 Pickable == rhs.Pickable;
93 }
94 };
95
96 typedef std::map<std::string, SegmentDisplayProperties> SegmentDisplayPropertiesMap;
97
98public:
101 void PrintSelf(ostream& os, vtkIndent indent) override;
102
104
106 void ReadXMLAttributes( const char** atts) override;
107
109 void WriteXML(ostream& of, int indent) override;
110
114
116 const char* GetNodeTagName() override { return "SegmentationDisplay"; }
117
118public:
128
130 vtkGetMacro(Visibility2DFill, bool);
131 vtkSetMacro(Visibility2DFill, bool);
132 vtkBooleanMacro(Visibility2DFill, bool);
134 vtkGetMacro(Visibility2DOutline, bool);
135 vtkSetMacro(Visibility2DOutline, bool);
136 vtkBooleanMacro(Visibility2DOutline, bool);
137
139 vtkGetMacro(Opacity3D, double);
140 vtkSetMacro(Opacity3D, double);
142 vtkGetMacro(Opacity2DFill, double);
143 vtkSetMacro(Opacity2DFill, double);
145 vtkGetMacro(Opacity2DOutline, double);
146 vtkSetMacro(Opacity2DOutline, double);
147
148public:
154 bool GetSegmentDisplayProperties(std::string segmentID, SegmentDisplayProperties &properties);
155
157 void SetSegmentDisplayProperties(std::string segmentID, SegmentDisplayProperties &properties);
158
160 void SetSegmentDisplayPropertiesToDefault(const std::string& segmentId);
161
163 void RemoveSegmentDisplayProperties(std::string segmentID);
164
167
172
179 void GenerateSegmentColor(double color[3], int colorNumber=0);
182 void GenerateSegmentColor(double &r, double &g, double &b);
183
185
187 void SetSegmentColorGeneratorSourceColorNodeID(const char* colorNodeID);
190
192 void GetPolyDataRepresentationNames(std::set<std::string> &representationNames);
193
200
205
206// Convenience and python compatibility functions
207public:
210 vtkVector3d GetSegmentColor(std::string segmentID);
212 bool GetSegmentColor(std::string segmentID, double* color);
214 bool GetSegmentColor(std::string segmentID, double &r, double &g, double &b);
215
218 vtkVector3d GetSegmentOverrideColor(std::string segmentID);
224 void SetSegmentOverrideColor(std::string segmentID, double r, double g, double b);
226 void SetSegmentOverrideColor(std::string segmentID, vtkVector3d overrideColor);
228 void UnsetSegmentOverrideColor(std::string segmentID);
229
232 bool GetSegmentVisibility(std::string segmentID);
234 void SetSegmentVisibility(std::string segmentID, bool visible);
235 void SetAllSegmentsVisibility(bool visible);
236
239 bool GetSegmentVisibility3D(std::string segmentID);
241 void SetSegmentVisibility3D(std::string segmentID, bool visible);
242 void SetAllSegmentsVisibility3D(bool visible, bool changeVisibleSegmentsOnly = false);
243
246 bool GetSegmentVisibility2DFill(std::string segmentID);
248 void SetSegmentVisibility2DFill(std::string segmentID, bool visible);
249 void SetAllSegmentsVisibility2DFill(bool visible, bool changeVisibleSegmentsOnly = false);
250
253 bool GetSegmentVisibility2DOutline(std::string segmentID);
255 void SetSegmentVisibility2DOutline(std::string segmentID, bool visible);
256 void SetAllSegmentsVisibility2DOutline(bool visible, bool changeVisibleSegmentsOnly = false);
257
260 double GetSegmentOpacity3D(std::string segmentID);
262 void SetSegmentOpacity3D(std::string segmentID, double opacity);
263 void SetAllSegmentsOpacity3D(double opacity, bool changeVisibleSegmentsOnly = false);
264
267 double GetSegmentOpacity2DFill(std::string segmentID);
269 void SetSegmentOpacity2DFill(std::string segmentID, double opacity);
270 void SetAllSegmentsOpacity2DFill(double opacity, bool changeVisibleSegmentsOnly = false);
271
274 double GetSegmentOpacity2DOutline(std::string segmentID);
276 void SetSegmentOpacity2DOutline(std::string segmentID, double opacity);
277 void SetAllSegmentsOpacity2DOutline(double opacity, bool changeVisibleSegmentsOnly = false);
278
280 void SetSegmentOpacity(std::string segmentID, double opacity);
281 void SetAllSegmentsOpacity(double opacity, bool changeVisibleSegmentsOnly = false);
282
285 bool GetSegmentPickable(std::string segmentID);
287 void SetSegmentPickable(std::string segmentID, bool pickable);
288 void SetAllSegmentsPickable(bool pickable, bool changeVisibleSegmentsOnly = false);
289
291 void GetVisibleSegmentIDs(vtkStringArray* segmentIDs);
292
294 void GetVisibleSegmentIDs(std::vector<std::string>& segmentIDs);
295
297 std::vector<std::string> GetVisibleSegmentIDs();
298
300
307 vtkBooleanMacro(RemoveUnusedDisplayProperties, bool);
309
311
313 vtkGetMacro(ClippingCapSurface, bool);
314 vtkSetMacro(ClippingCapSurface, bool);
315 vtkBooleanMacro(ClippingCapSurface, bool);
317
319
320 vtkGetMacro(ClippingCapOpacity, double);
321 vtkSetMacro(ClippingCapOpacity, double);
323
325
327 vtkGetMacro(ClippingOutline, bool);
328 vtkSetMacro(ClippingOutline, bool);
329 vtkBooleanMacro(ClippingOutline, bool);
330
331protected:
333 void GetSegmentIDs(std::vector<std::string>& segmentIDs, bool visibleSegmentsOnly);
334
336
340 void UpdateSegmentList(bool removeUnusedDisplayProperties);
342
343protected:
348
349 friend class vtkMRMLSegmentationNode; // Access to UpdateSegmentList();
350
351protected:
355
360
364
367 unsigned int NumberOfGeneratedColors{0};
368
370 vtkMTimeType SegmentListUpdateTime{0};
372
381
383 double Opacity3D{1.0};
385 double Opacity2DFill{0.5};
387 double Opacity2DOutline{1.0};
388
390
391 bool ClippingCapSurface{ false };
392 double ClippingCapOpacity{ 1.0 };
393 bool ClippingOutline{ false };
394};
395
396#endif
MRML node to represent discrete color information.
bool GetSegmentVisibility3D(std::string segmentID)
bool GetSegmentVisibility2DOutline(std::string segmentID)
void RemoveSegmentDisplayProperties(std::string segmentID)
Remove segment display properties.
void SetSegmentOpacity(std::string segmentID, double opacity)
Set all three types of segment opacity by segment ID.
void SetSegmentVisibility3D(std::string segmentID, bool visible)
Set segment 3D visibility by segment ID. Convenience function for python compatibility.
void WriteXML(ostream &of, int indent) override
Write this node's information to a MRML file in XML format.
void SetSegmentOverrideColor(std::string segmentID, vtkVector3d overrideColor)
Set segment override color by segment ID.
void SetSegmentOpacity2DOutline(std::string segmentID, double opacity)
Set segment 2D outline opacity by segment ID. Convenience function for python compatibility.
double GetSegmentOpacity3D(std::string segmentID)
bool GetSegmentColor(std::string segmentID, double *color)
Get segment color by segment ID. If overridden then the override color is returned.
vtkMTimeType SegmentListUpdateTime
For checking if cached segment list in SegmentationDisplayProperties has to be updated.
SegmentDisplayPropertiesMap SegmentationDisplayProperties
void SetSegmentDisplayProperties(std::string segmentID, SegmentDisplayProperties &properties)
Set segment display properties.
void ClearSegmentDisplayProperties()
Clear segment display properties.
void SetSegmentOpacity2DFill(std::string segmentID, double opacity)
Set segment 2D fill opacity by segment ID. Convenience function for python compatibility.
double GetSegmentOpacity2DFill(std::string segmentID)
std::vector< std::string > GetVisibleSegmentIDs()
Get all visible segment IDs.
const char * GetNodeTagName() override
Get node XML tag name (like Volume, Model)
vtkVector3d GetSegmentOverrideColor(std::string segmentID)
void operator=(const vtkMRMLSegmentationDisplayNode &)
vtkVector3d GetSegmentColor(std::string segmentID)
bool GetSegmentPickable(std::string segmentID)
static vtkMRMLSegmentationDisplayNode * New()
void SetAllSegmentsOpacity2DFill(double opacity, bool changeVisibleSegmentsOnly=false)
void GenerateSegmentColor(double &r, double &g, double &b)
void SetAllSegmentsPickable(bool pickable, bool changeVisibleSegmentsOnly=false)
void GenerateSegmentColor(double color[3], int colorNumber=0)
double GetSegmentOpacity2DOutline(std::string segmentID)
void SetAllSegmentsOpacity2DOutline(double opacity, bool changeVisibleSegmentsOnly=false)
bool GetSegmentDisplayProperties(std::string segmentID, SegmentDisplayProperties &properties)
void GetVisibleSegmentIDs(std::vector< std::string > &segmentIDs)
Get all visible segment IDs.
void SetSegmentColorGeneratorSourceColorNodeID(const char *colorNodeID)
vtkMRMLSegmentationDisplayNode(const vtkMRMLSegmentationDisplayNode &)
void PrintSelf(ostream &os, vtkIndent indent) override
std::string GetDisplayRepresentationName2D()
bool GetSegmentVisibility(std::string segmentID)
void SetAllSegmentsVisibility3D(bool visible, bool changeVisibleSegmentsOnly=false)
void GetVisibleSegmentIDs(vtkStringArray *segmentIDs)
Get all visible segment IDs.
bool GetSegmentVisibility2DFill(std::string segmentID)
void SetAllSegmentsVisibility2DFill(bool visible, bool changeVisibleSegmentsOnly=false)
void GetPolyDataRepresentationNames(std::set< std::string > &representationNames)
Collect representation names that are stored as poly data.
void UnsetSegmentOverrideColor(std::string segmentID)
Unset segment override color (default segment color will be used for display instead).
void SetSegmentVisibility2DFill(std::string segmentID, bool visible)
Set segment 2D fill visibility by segment ID. Convenience function for python compatibility.
vtkMRMLNode * CreateNodeInstance() override
Create instance of the default node. Like New only virtual.
void SetSegmentPickable(std::string segmentID, bool pickable)
Set segment 2D pickability by segment ID. Convenience function for python compatibility.
void SetSegmentOpacity3D(std::string segmentID, double opacity)
Set segment 3D opacity by segment ID. Convenience function for python compatibility.
vtkMRMLCopyContentMacro(vtkMRMLSegmentationDisplayNode)
void SetAllSegmentsVisibility(bool visible)
std::map< std::string, SegmentDisplayProperties > SegmentDisplayPropertiesMap
void ReadXMLAttributes(const char **atts) override
Set node attributes from name/value pairs.
void SetSegmentDisplayPropertiesToDefault(const std::string &segmentId)
Set segment display properties to default.
double Opacity2DFill
2D fill opacity for the whole segmentation
double Opacity3D
3D opacity for the whole segmentation
const char * GetSegmentColorGeneratorSourceColorNodeID()
double Opacity2DOutline
2D outline opacity for the whole segmentation
void GetSegmentIDs(std::vector< std::string > &segmentIDs, bool visibleSegmentsOnly)
Convenience function for getting all segment IDs.
void UpdateSegmentList(bool removeUnusedDisplayProperties)
void SetAllSegmentsOpacity(double opacity, bool changeVisibleSegmentsOnly=false)
bool GetSegmentColor(std::string segmentID, double &r, double &g, double &b)
Get segment color by segment ID. If overridden then the override color is returned.
void SetSegmentVisibility(std::string segmentID, bool visible)
Set overall segment visibility by segment ID. Convenience function for python compatibility.
std::string GetDisplayRepresentationName3D()
void SetAllSegmentsOpacity3D(double opacity, bool changeVisibleSegmentsOnly=false)
void SetSegmentOverrideColor(std::string segmentID, double r, double g, double b)
void SetAllSegmentsVisibility2DOutline(bool visible, bool changeVisibleSegmentsOnly=false)
void SetSegmentVisibility2DOutline(std::string segmentID, bool visible)
Set segment 2D outline visibility by segment ID. Convenience function for python compatibility.
~vtkMRMLSegmentationDisplayNode() override
This class encapsulates a segmentation that can contain multiple segments and multiple representation...
bool Pickable
Pickable by interactions flag. If true, then the point under the mouse on the segment surfaces in the...
bool operator==(const SegmentDisplayProperties &rhs) const