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
itkShortestPathNode.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 __itkShortestPathNode_h_
13
#define __itkShortestPathNode_h_
14
15
#include "
MitkGraphAlgorithmsExports.h
"
16
17
namespace
itk
18
{
19
typedef
double
DistanceType
;
// Type to declare the costs
20
typedef
unsigned
int
21
NodeNumType
;
// Type for Node Numeration: unsignend int for up to 4.2 billion pixel in 32Bit system
22
23
class
MITKGRAPHALGORITHMS_EXPORT
ShortestPathNode
24
{
25
public
:
26
DistanceType
distance
;
// minimal costs from StartPoint to this pixel
27
DistanceType
distAndEst
;
// Distance+Estimated Distnace to target
28
NodeNumType
prevNode
;
// previous node. Important to find the Shortest Path
29
NodeNumType
mainListIndex
;
// Indexnumber of this node in m_Nodes
30
bool
closed
;
// determines if this node is closes, so its optimal path to startNode is known
31
};
32
33
// bool operator<(const ShortestPathNode &a) const;
34
// bool operator==(const ShortestPathNode &a) const;
35
}
36
37
#endif
itk::ShortestPathNode::mainListIndex
NodeNumType mainListIndex
Definition:
itkShortestPathNode.h:29
itk::ShortestPathNode
Definition:
itkShortestPathNode.h:23
itk::DistanceType
double DistanceType
Definition:
itkShortestPathNode.h:19
itk::ShortestPathNode::distance
DistanceType distance
Definition:
itkShortestPathNode.h:26
itk::ShortestPathNode::prevNode
NodeNumType prevNode
Definition:
itkShortestPathNode.h:28
MITKGRAPHALGORITHMS_EXPORT
#define MITKGRAPHALGORITHMS_EXPORT
Definition:
MitkGraphAlgorithmsExports.h:15
itk::ShortestPathNode::closed
bool closed
Definition:
itkShortestPathNode.h:30
MitkGraphAlgorithmsExports.h
itk
SET FUNCTIONS.
Definition:
itkIntelligentBinaryClosingFilter.h:30
itk::ShortestPathNode::distAndEst
DistanceType distAndEst
Definition:
itkShortestPathNode.h:27
itk::NodeNumType
unsigned int NodeNumType
Definition:
itkShortestPathNode.h:21
src
MITK
Modules
GraphAlgorithms
itkShortestPathNode.h
Generated on Thu Nov 30 2023 15:58:49 for Medical Imaging Interaction Toolkit by
1.8.17