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
itkShortestPathCostFunctionTbss.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
#ifndef __itkShortestPathCostFunctionTbss_h
13
#define __itkShortestPathCostFunctionTbss_h
14
15
#include "itkObject.h"
16
#include "itkObjectFactory.h"
17
#include "itkShapedNeighborhoodIterator.h"
18
#include "
itkShortestPathCostFunction.h
"
// Superclass of Metrics
19
#include <itkImageRegionConstIterator.h>
20
#include <itkMacro.h>
21
22
namespace
itk
23
{
24
template
<
class
TInputImageType>
25
class
ShortestPathCostFunctionTbss
:
public
ShortestPathCostFunction
<TInputImageType>
26
{
27
public
:
29
typedef
ShortestPathCostFunctionTbss
Self
;
30
typedef
ShortestPathCostFunction<TInputImageType>
Superclass
;
31
typedef
SmartPointer<Self>
Pointer
;
32
typedef
SmartPointer<const Self>
ConstPointer
;
33
typedef
itk::ImageRegionConstIterator<TInputImageType>
ConstIteratorType
;
34
typedef
typename
TInputImageType::IndexType
IndexType
;
35
36
typedef
itk::Image<float, 3>
FloatImageType
;
37
39
itkFactorylessNewMacro(
Self
);
40
itkCloneMacro(
Self
);
41
43
itkTypeMacro(
Self
,
Superclass
);
44
45
// \brief calculates the costs for going from p1 to p2
46
double
GetCost
(
IndexType
p1,
IndexType
p2)
override
;
47
48
// \brief Initialize the metric
49
void
Initialize
()
override
;
50
51
// \brief returns the minimal costs possible (needed for A*)
52
double
GetMinCost
()
override
;
53
54
void
SetThreshold
(
double
t) {
m_Threshold
= t; }
55
protected
:
56
ShortestPathCostFunctionTbss
();
57
58
~ShortestPathCostFunctionTbss
()
override
{};
59
60
double
m_Threshold
;
61
62
private
:
63
};
64
65
}
// end namespace itk
66
67
#include "itkShortestPathCostFunctionTbss.txx"
68
69
#endif
/* __itkShortestPathCostFunctionTbss_h */
itk::ShortestPathCostFunctionTbss::Pointer
SmartPointer< Self > Pointer
Definition:
itkShortestPathCostFunctionTbss.h:31
itk::ShortestPathCostFunctionTbss::ConstIteratorType
itk::ImageRegionConstIterator< TInputImageType > ConstIteratorType
Definition:
itkShortestPathCostFunctionTbss.h:33
itk::ShortestPathCostFunctionTbss::GetMinCost
double GetMinCost() override
itk::SmartPointer< Self >
itkShortestPathCostFunction.h
itk::ShortestPathCostFunctionTbss::m_Threshold
double m_Threshold
Definition:
itkShortestPathCostFunctionTbss.h:58
itk::ShortestPathCostFunctionTbss::SetThreshold
void SetThreshold(double t)
Definition:
itkShortestPathCostFunctionTbss.h:54
itk::ShortestPathCostFunctionTbss
Definition:
itkShortestPathCostFunctionTbss.h:25
itk::ShortestPathCostFunctionTbss::ShortestPathCostFunctionTbss
ShortestPathCostFunctionTbss()
itk::ShortestPathCostFunctionTbss::GetCost
double GetCost(IndexType p1, IndexType p2) override
itk::ShortestPathCostFunctionTbss::Superclass
ShortestPathCostFunction< TInputImageType > Superclass
Definition:
itkShortestPathCostFunctionTbss.h:30
itk::ShortestPathCostFunction::IndexType
TInputImageType::IndexType IndexType
Definition:
itkShortestPathCostFunction.h:43
itk::ShortestPathCostFunctionTbss::Self
ShortestPathCostFunctionTbss Self
Definition:
itkShortestPathCostFunctionTbss.h:29
itk::ShortestPathCostFunctionTbss::ConstPointer
SmartPointer< const Self > ConstPointer
Definition:
itkShortestPathCostFunctionTbss.h:32
itk::ShortestPathCostFunctionTbss::Initialize
void Initialize() override
itk::ShortestPathCostFunctionTbss::FloatImageType
itk::Image< float, 3 > FloatImageType
Definition:
itkShortestPathCostFunctionTbss.h:36
itk
SET FUNCTIONS.
Definition:
itkIntelligentBinaryClosingFilter.h:30
itk::ShortestPathCostFunctionTbss::~ShortestPathCostFunctionTbss
~ShortestPathCostFunctionTbss() override
Definition:
itkShortestPathCostFunctionTbss.h:58
itk::ShortestPathCostFunctionTbss::IndexType
TInputImageType::IndexType IndexType
Definition:
itkShortestPathCostFunctionTbss.h:34
itk::ShortestPathCostFunction
Definition:
itkShortestPathCostFunction.h:23
itk::ShortestPathCostFunction::Superclass
Object Superclass
Definition:
itkShortestPathCostFunction.h:28
src
MITK
Modules
GraphAlgorithms
itkShortestPathCostFunctionTbss.h
Generated on Thu Nov 30 2023 15:58:49 for Medical Imaging Interaction Toolkit by
1.8.17