Medical Imaging Interaction Toolkit
2023.12.00
Medical Imaging Interaction Toolkit
Home
Manual
API Reference
Groups
Namespace List
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Variables
e
f
i
l
m
n
p
r
s
t
Typedefs
a
b
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
v
x
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Class List
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
h
i
l
m
n
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Properties
c
m
o
r
s
t
Related Functions
File List
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
m
n
o
p
q
r
s
t
u
v
Functions
_
e
g
h
i
m
o
q
s
u
Variables
Typedefs
Enumerations
Enumerator
Macros
_
a
b
c
d
e
f
g
i
m
o
p
q
r
s
u
v
Examples
Download
Bug Tracker
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
mitkContourVtkMapper3D.h
Go to the documentation of this file.
1
/*============================================================================
2
3
The Medical Imaging Interaction Toolkit (MITK)
4
5
Copyright (c) German Cancer Research Center (DKFZ)
6
All rights reserved.
7
8
Use of this source code is governed by a 3-clause BSD license that can be
9
found in the LICENSE file.
10
11
============================================================================*/
12
13
#ifndef mitkContourVtkMapper3D_h
14
#define mitkContourVtkMapper3D_h
15
16
#include "
mitkVtkMapper.h
"
17
#include <
MitkSegmentationExports.h
>
18
19
#include <vtkPolyData.h>
20
#include <vtkSmartPointer.h>
21
22
class
vtkPolyDataMapper;
23
class
vtkAppendPolyData;
24
class
vtkActor;
25
class
vtkTubeFilter;
26
27
namespace
mitk
28
{
29
class
BaseRenderer;
30
class
Contour;
31
36
class
MITKSEGMENTATION_EXPORT
ContourVtkMapper3D
:
public
VtkMapper
37
{
38
public
:
39
mitkClassMacro
(
ContourVtkMapper3D
,
VtkMapper
);
40
41
itkFactorylessNewMacro(
Self
);
42
43
itkCloneMacro(
Self
);
44
45
virtual
const
mitk::Contour
*GetInput();
46
47
vtkProp *GetVtkProp(
mitk::BaseRenderer
*renderer)
override
;
48
49
protected
:
50
ContourVtkMapper3D
();
51
~
ContourVtkMapper3D
()
override
;
52
53
void
GenerateDataForRenderer(
mitk::BaseRenderer
*renderer)
override
;
54
55
vtkSmartPointer<vtkPolyDataMapper>
m_VtkPolyDataMapper
;
56
vtkSmartPointer<vtkTubeFilter>
m_TubeFilter
;
57
58
vtkSmartPointer<vtkAppendPolyData>
m_VtkPointList
;
59
vtkSmartPointer<vtkPolyData>
m_Contour
;
60
vtkSmartPointer<vtkActor>
m_Actor
;
61
};
62
63
}
// namespace mitk
64
65
#endif
mitk::ContourVtkMapper3D
Vtk-based mapper for mitk::Contour.
Definition:
mitkContourVtkMapper3D.h:36
mitk::ContourVtkMapper3D::m_TubeFilter
vtkSmartPointer< vtkTubeFilter > m_TubeFilter
Definition:
mitkContourVtkMapper3D.h:56
vtkSmartPointer< vtkPolyDataMapper >
mitk::ContourVtkMapper3D::m_VtkPolyDataMapper
vtkSmartPointer< vtkPolyDataMapper > m_VtkPolyDataMapper
Definition:
mitkContourVtkMapper3D.h:55
mitk::ContourVtkMapper3D::m_Actor
vtkSmartPointer< vtkActor > m_Actor
Definition:
mitkContourVtkMapper3D.h:60
mitk::ContourVtkMapper3D::m_VtkPointList
vtkSmartPointer< vtkAppendPolyData > m_VtkPointList
Definition:
mitkContourVtkMapper3D.h:58
mitk
Find image slices visible on a given plane.
Definition:
RenderingTests.dox:1
mitk::Mapper
Base class of all mappers, Vtk as well as OpenGL mappers.
Definition:
mitkMapper.h:46
mitk::VtkMapper
Base class of all Vtk Mappers in order to display primitives by exploiting Vtk functionality.
Definition:
mitkVtkMapper.h:47
MITKSEGMENTATION_EXPORT
#define MITKSEGMENTATION_EXPORT
Definition:
MitkSegmentationExports.h:15
mitkVtkMapper.h
mitk::ContourVtkMapper3D::m_Contour
vtkSmartPointer< vtkPolyData > m_Contour
Definition:
mitkContourVtkMapper3D.h:59
mitkClassMacro
#define mitkClassMacro(className, SuperClassName)
Definition:
mitkCommon.h:36
mitk::BaseRenderer
Definition:
mitkBaseRenderer.h:56
MitkSegmentationExports.h
mitk::Contour
Stores vertices for drawing a contour.
Definition:
mitkContour.h:31
src
MITK
Modules
Segmentation
Rendering
mitkContourVtkMapper3D.h
Generated on Thu Nov 30 2023 15:58:50 for Medical Imaging Interaction Toolkit by
1.8.17