Medical Imaging Interaction Toolkit
2024.12.99-d991a09f
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
f
g
i
l
m
n
o
p
q
r
s
t
v
x
Enumerations
Enumerator
a
b
c
d
e
g
h
i
k
l
n
o
p
r
s
t
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
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
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
o
p
q
r
s
t
u
v
x
Functions
_
e
h
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
x
Examples
Download
▼
Medical Imaging Interaction Toolkit
►
MITK User Manual
►
Developer Manual
►
MITK Basic Image Processing Mini Apps
Example View
Deprecated List
▼
API Reference
►
Groups
►
Namespace List
►
Class List
▼
File List
►
File List
►
File Members
►
Examples
Download
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
mitkTwoTissueCompartmentModelParameterizer.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 mitkTwoTissueCompartmentModelParameterizer_h
14
#define mitkTwoTissueCompartmentModelParameterizer_h
15
16
#include "
mitkAIFBasedModelParameterizerBase.h
"
17
#include "
mitkTwoTissueCompartmentModel.h
"
18
19
#include "
MitkPharmacokineticsExports.h
"
20
21
namespace
mitk
22
{
23
24
class
MITKPHARMACOKINETICS_EXPORT
TwoTissueCompartmentModelParameterizer
:
public
25
mitk::AIFBasedModelParameterizerBase
<mitk::TwoTissueCompartmentModel>
26
{
27
public
:
28
typedef
TwoTissueCompartmentModelParameterizer
Self
;
29
typedef
mitk::AIFBasedModelParameterizerBase<mitk::TwoTissueCompartmentModel>
Superclass
;
30
typedef
itk::SmartPointer< Self >
Pointer
;
31
typedef
itk::SmartPointer< const Self >
ConstPointer
;
32
33
itkTypeMacro(
TwoTissueCompartmentModelParameterizer
,
34
mitk::AIFBasedModelParameterizerBase<mitk::TwoTissueCompartmentModel>
);
35
itkFactorylessNewMacro(
Self
);
36
37
typedef
Superclass::ModelBaseType
ModelBaseType
;
38
typedef
Superclass::ModelBasePointer
ModelBasePointer
;
39
40
typedef
Superclass::ModelType
ModelType
;
41
typedef
ModelType::Pointer
ModelPointer
;
42
43
typedef
Superclass::StaticParameterValueType
StaticParameterValueType
;
44
typedef
Superclass::StaticParameterValuesType
StaticParameterValuesType
;
45
typedef
Superclass::StaticParameterMapType
StaticParameterMapType
;
46
47
typedef
Superclass::IndexType
IndexType
;
48
51
ParametersType
GetDefaultInitialParameterization()
const override
;
52
53
protected
:
54
TwoTissueCompartmentModelParameterizer
();
55
56
~
TwoTissueCompartmentModelParameterizer
()
override
;
57
58
private
:
59
60
//No copy constructor allowed
61
TwoTissueCompartmentModelParameterizer
(
const
Self
& source);
62
void
operator=(
const
Self
&);
//purposely not implemented
63
};
64
}
65
#endif
mitk::TwoTissueCompartmentModelParameterizer::Pointer
itk::SmartPointer< Self > Pointer
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:30
MITKPHARMACOKINETICS_EXPORT
#define MITKPHARMACOKINETICS_EXPORT
Definition:
MitkPharmacokineticsExports.h:15
mitk::TwoTissueCompartmentModelParameterizer::StaticParameterValueType
Superclass::StaticParameterValueType StaticParameterValueType
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:43
mitkAIFBasedModelParameterizerBase.h
mitk::ModelParameterizerBase
Definition:
mitkModelParameterizerBase.h:36
mitk::TwoTissueCompartmentModelParameterizer::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:31
mitk::TwoTissueCompartmentModelParameterizer::Superclass
mitk::AIFBasedModelParameterizerBase< mitk::TwoTissueCompartmentModel > Superclass
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:29
mitkTwoTissueCompartmentModel.h
itk::SmartPointer< Self >
mitk::TwoTissueCompartmentModelParameterizer::ModelPointer
ModelType::Pointer ModelPointer
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:41
mitk::TwoTissueCompartmentModelParameterizer::ModelBasePointer
Superclass::ModelBasePointer ModelBasePointer
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:38
MitkPharmacokineticsExports.h
mitk
Find image slices visible on a given plane.
Definition:
RenderingTests.dox:1
mitk::TwoTissueCompartmentModelParameterizer::Self
TwoTissueCompartmentModelParameterizer Self
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:28
mitk::TwoTissueCompartmentModelParameterizer
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:24
mitk::AIFBasedModelParameterizerBase
Definition:
mitkAIFBasedModelParameterizerBase.h:24
mitk::TwoTissueCompartmentModelParameterizer::StaticParameterMapType
Superclass::StaticParameterMapType StaticParameterMapType
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:45
mitk::ModelParameterizerBase::ParametersType
ModelBaseType::ParametersType ParametersType
Definition:
mitkModelParameterizerBase.h:49
mitk::TwoTissueCompartmentModelParameterizer::IndexType
Superclass::IndexType IndexType
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:47
mitk::TwoTissueCompartmentModelParameterizer::StaticParameterValuesType
Superclass::StaticParameterValuesType StaticParameterValuesType
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:44
mitk::TwoTissueCompartmentModelParameterizer::ModelType
Superclass::ModelType ModelType
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:40
mitk::TwoTissueCompartmentModelParameterizer::ModelBaseType
Superclass::ModelBaseType ModelBaseType
Definition:
mitkTwoTissueCompartmentModelParameterizer.h:35
src
MITK
Modules
Pharmacokinetics
include
mitkTwoTissueCompartmentModelParameterizer.h
Generated on Fri Mar 14 2025 02:13:59 for Medical Imaging Interaction Toolkit by
1.8.17