/usr/include/ITK-4.9/itkFastMarchingReachedTargetNodesStoppingCriterion.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkFastMarchingReachedTargetNodesStoppingCriterion_h
#define itkFastMarchingReachedTargetNodesStoppingCriterion_h
#include "itkFastMarchingStoppingCriterionBase.h"
#include "itkObjectFactory.h"
namespace itk
{
/**
* \class FastMarchingReachedTargetNodesStoppingCriterion
* \brief Stopping criterion for FastMarchingFilterBase.
*
* Stopping criterion where the condition is satisfied when the front
* reaches one, several or all target nodes (provided by the user).
*
* \ingroup ITKFastMarching
*/
template< typename TInput, typename TOutput >
class FastMarchingReachedTargetNodesStoppingCriterion :
public FastMarchingStoppingCriterionBase< TInput, TOutput >
{
public:
typedef FastMarchingReachedTargetNodesStoppingCriterion Self;
typedef FastMarchingStoppingCriterionBase< TInput, TOutput > Superclass;
typedef SmartPointer< Self > Pointer;
typedef SmartPointer< const Self > ConstPointer;
typedef typename Superclass::Traits Traits;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(FastMarchingReachedTargetNodesStoppingCriterion,
FastMarchingStoppingCriterionBase );
typedef typename Superclass::OutputPixelType OutputPixelType;
typedef typename Superclass::NodeType NodeType;
/** \enum TargetConditionType */
enum TargetConditionType { OneTarget = 1,
SomeTargets,
AllTargets };
/** Set/Get TargetCondition to indicate if the user wants the front to
reach one, some or all target nodes. */
void SetTargetCondition( const TargetConditionType& iCondition )
{
m_TargetCondition = iCondition;
m_Initialized = false;
this->Modified();
}
itkGetConstReferenceMacro( TargetCondition, TargetConditionType );
/** Set/Get TargetOffset */
itkSetMacro( TargetOffset, OutputPixelType );
itkGetMacro( TargetOffset, OutputPixelType );
/** \brief Set the number of target nodes to be reached */
void SetNumberOfTargetsToBeReached( const size_t& iN )
{
m_NumberOfTargetsToBeReached = iN;
m_Initialized = false;
this->Modified();
}
/** \brief Set Target Nodes*/
virtual void SetTargetNodes( const std::vector< NodeType >& iNodes )
{
m_TargetNodes = iNodes;
m_Initialized = false;
this->Modified();
}
/** \brief Set the current node */
void SetCurrentNode( const NodeType& iNode ) ITK_OVERRIDE
{
if( !m_Initialized )
{
Initialize();
}
if( !m_Satisfied )
{
// Only check for reached targets if the mode is not NoTargets and
// there is at least one TargetPoint.
if ( !m_TargetNodes.empty() )
{
typename std::vector< NodeType >::const_iterator
pointsIter = m_TargetNodes.begin();
typename std::vector< NodeType >::const_iterator
pointsEnd = m_TargetNodes.end();
while( pointsIter != pointsEnd )
{
if ( *pointsIter == iNode )
{
this->m_ReachedTargetNodes.push_back( iNode );
m_Satisfied =
( m_ReachedTargetNodes.size() == m_NumberOfTargetsToBeReached );
break;
}
++pointsIter;
}
if( m_Satisfied )
{
m_StoppingValue = this->m_CurrentValue + m_TargetOffset;
}
}
else
{
m_Satisfied = false;
}
}
}
/** \brief returns if the stopping condition is satisfied or not. */
bool IsSatisfied() const ITK_OVERRIDE
{
return m_Satisfied && ( this->m_CurrentValue >= m_StoppingValue );
}
/** \brief Get a short description of the stopping criterion. */
std::string GetDescription() const ITK_OVERRIDE
{
return "Target Nodes Reached with possible overshoot";
}
protected:
/** Constructor */
FastMarchingReachedTargetNodesStoppingCriterion() :
Superclass(),
m_TargetCondition(AllTargets),
m_NumberOfTargetsToBeReached(0),
m_TargetOffset(NumericTraits< OutputPixelType >::ZeroValue()),
m_StoppingValue(NumericTraits< OutputPixelType >::ZeroValue()),
m_Satisfied(false),
m_Initialized(false)
{
}
/** Destructor */
~FastMarchingReachedTargetNodesStoppingCriterion() {}
TargetConditionType m_TargetCondition;
std::vector< NodeType > m_TargetNodes;
std::vector< NodeType > m_ReachedTargetNodes;
size_t m_NumberOfTargetsToBeReached;
OutputPixelType m_TargetOffset;
OutputPixelType m_StoppingValue;
bool m_Satisfied;
bool m_Initialized;
void Reset() ITK_OVERRIDE
{
this->Initialize();
}
void Initialize()
{
if( m_TargetCondition == OneTarget )
{
m_NumberOfTargetsToBeReached = 1;
}
if( m_TargetCondition == AllTargets )
{
m_NumberOfTargetsToBeReached = m_TargetNodes.size();
}
if( m_NumberOfTargetsToBeReached < 1 )
{
itkExceptionMacro(
<<"Number of target nodes to be reached is null" );
}
if( m_NumberOfTargetsToBeReached > m_TargetNodes.size() )
{
itkExceptionMacro(
<<"Number of target nodes to be reached is above the provided number of target nodes" );
}
m_ReachedTargetNodes.clear();
m_Satisfied = false;
m_Initialized = true;
}
private:
FastMarchingReachedTargetNodesStoppingCriterion( const Self& );
void operator = ( const Self& );
};
}
#endif // itkFastMarchingThresholdStoppingCriterion_h
|