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
mitkImageToPlanarFigureFilter.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 mitkImageToPlanarFigureFilter_h
14
#define mitkImageToPlanarFigureFilter_h
15
16
#include "
mitkCommon.h
"
17
#include "
mitkImage.h
"
18
#include "
mitkPlanarFigureSource.h
"
19
20
namespace
mitk
21
{
22
//##Documentation
23
//## @brief Superclass of all classes having one or more Images as input and
24
//## generating PlanarFigures as output
25
//## @ingroup MitkPlanarFigureModule
26
class
MITKPLANARFIGURE_EXPORT
ImageToPlanarFigureFilter
:
public
PlanarFigureSource
27
{
28
public
:
29
mitkClassMacro
(
ImageToPlanarFigureFilter
,
PlanarFigureSource
);
30
// itkFactorylessNewMacro(Self)
31
// itkCloneMacro(Self)
32
34
typedef
mitk::Image
InputImageType
;
35
typedef
InputImageType::Pointer
InputImagePointer
;
36
typedef
InputImageType::ConstPointer
InputImageConstPointer
;
37
typedef
SlicedData::RegionType
InputImageRegionType
;
38
40
using
Superclass::SetInput;
41
virtual
void
SetInput(
const
InputImageType
*image);
42
virtual
void
SetInput(
unsigned
int
,
const
InputImageType
*image);
43
const
InputImageType
*GetInput(
void
);
44
const
InputImageType
*GetInput(
unsigned
int
idx);
45
46
protected
:
47
ImageToPlanarFigureFilter
();
48
~
ImageToPlanarFigureFilter
()
override
;
49
50
void
PrintSelf(std::ostream &os, itk::Indent indent)
const override
;
51
66
void
GenerateInputRequestedRegion()
override
;
67
68
private
:
69
void
operator=(
const
Self
&);
// purposely not implemented
70
};
71
72
}
// namespace mitk
73
74
#endif
mitk::ImageToPlanarFigureFilter::InputImageConstPointer
InputImageType::ConstPointer InputImageConstPointer
Definition:
mitkImageToPlanarFigureFilter.h:36
mitk::ImageToPlanarFigureFilter::InputImagePointer
InputImageType::Pointer InputImagePointer
Definition:
mitkImageToPlanarFigureFilter.h:35
mitkImage.h
MITKPLANARFIGURE_EXPORT
#define MITKPLANARFIGURE_EXPORT
Definition:
MitkPlanarFigureExports.h:15
mitk::ImageToPlanarFigureFilter::InputImageType
mitk::Image InputImageType
Definition:
mitkImageToPlanarFigureFilter.h:34
mitk::PlanarFigureSource
Base class for all filters which have an object of type mitk::PlanarFigure as output.
Definition:
mitkPlanarFigureSource.h:33
mitk::Image
Image class for storing images.
Definition:
mitkImage.h:69
itk::SmartPointer< Self >
mitk::SlicedData::RegionType
itk::ImageRegion< RegionDimension > RegionType
Definition:
mitkSlicedData.h:45
mitk::ImageToPlanarFigureFilter
Superclass of all classes having one or more Images as input and generating PlanarFigures as output.
Definition:
mitkImageToPlanarFigureFilter.h:26
mitk
Find image slices visible on a given plane.
Definition:
RenderingTests.dox:1
mitk::BaseDataSource
Superclass of all classes generating some kind of mitk::BaseData.
Definition:
mitkBaseDataSource.h:71
mitkCommon.h
mitk::ImageToPlanarFigureFilter::InputImageRegionType
SlicedData::RegionType InputImageRegionType
Definition:
mitkImageToPlanarFigureFilter.h:37
mitkClassMacro
#define mitkClassMacro(className, SuperClassName)
Definition:
mitkCommon.h:36
mitkPlanarFigureSource.h
src
MITK
Modules
PlanarFigure
include
mitkImageToPlanarFigureFilter.h
Generated on Thu Nov 30 2023 15:58:53 for Medical Imaging Interaction Toolkit by
1.8.17