99 Copyright (c) Insight Software Consortium. All rights reserved.
1010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
1111
12- This software is distributed WITHOUT ANY WARRANTY; without even
12+ This software is distributed WITHOUT ANY WARRANTY; without even
1313 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
1414 PURPOSE. See the above copyright notices for more information.
1515
@@ -30,12 +30,12 @@ namespace itk
3030/* *
3131 * \class ArrivalFunctionToPathCommand
3232 * \brief A command to listen for Optimizer Iteration events.
33- * \author Dan Mueller, Queensland University of Technology,
33+ * \author Dan Mueller, Queensland University of Technology,
3434 * dan.muel[at]gmail.com
3535 *
3636 *
3737 * \ingroup MinimalPathExtraction
38- *
38+ *
3939 */
4040
4141template <class TFilter >
@@ -49,7 +49,7 @@ class ArrivalFunctionToPathCommand : public itk::Command
4949
5050 /* * Method for creation through the object factory. */
5151 itkNewMacro ( Self );
52-
52+
5353 /* * Some useful typedefs. */
5454 typedef TFilter FilterType;
5555
@@ -59,13 +59,13 @@ class ArrivalFunctionToPathCommand : public itk::Command
5959
6060 /* * Execute */
6161 void Execute (itk::Object *caller, const itk::EventObject & event)
62- {
62+ {
6363 Execute ( (const itk::Object *)caller, event);
64- }
64+ }
6565
6666 /* * Execute */
6767 void Execute (const itk::Object * object, const itk::EventObject & event)
68- {
68+ {
6969 if ( ! itk::IterationEvent ().CheckEvent ( &event ) )
7070 {
7171 return ;
@@ -75,20 +75,20 @@ class ArrivalFunctionToPathCommand : public itk::Command
7575 {
7676 m_Filter->Execute ( object, event );
7777 }
78- }
78+ }
7979
8080protected:
8181 ArrivalFunctionToPathCommand (){}
8282 ~ArrivalFunctionToPathCommand (){}
83-
83+
8484private:
8585 ArrivalFunctionToPathCommand ( const Self& );
8686 void operator = ( const Self& );
8787
8888 typename FilterType::Pointer m_Filter;
8989};
9090
91-
91+
9292/* * \class ArrivalFunctionToPathFilter
9393 * \brief Extracts a path from a Fast Marching arrival function.
9494 *
@@ -130,7 +130,7 @@ class ArrivalFunctionToPathCommand : public itk::Command
130130 * Cambridge Press, 2nd edition, 1999.
131131 * [2] J. Andrews and J. Sethian. Fast marching methods for the continuous
132132 * traveling salesman problem. Proceedings of the National Academy of
133- * Sciences (PNAS), 104(4):1118 1123, 2007.
133+ * Sciences (PNAS), 104(4):1118/ 1123, 2007.
134134 *
135135 * \author Dan Mueller, Queensland University of Technology, dan.muel[at]gmail.com
136136 *
@@ -152,17 +152,17 @@ class ITK_EXPORT ArrivalFunctionToPathFilter :
152152
153153 /* * Run-time type information (and related methods). */
154154 itkTypeMacro (ArrivalFunctionToPathFilter,ImageToPathFilter);
155-
155+
156156 /* * Method for creation through the object factory. */
157157 itkNewMacro (Self);
158158
159159 /* * Some image typedefs. */
160160 typedef TInputImage InputImageType;
161161 typedef typename InputImageType::Pointer InputImagePointer;
162162 typedef typename InputImageType::ConstPointer InputImageConstPointer;
163- typedef typename InputImageType::RegionType InputImageRegionType;
163+ typedef typename InputImageType::RegionType InputImageRegionType;
164164 typedef typename InputImageType::PixelType InputImagePixelType;
165-
165+
166166 /* * Some path typedefs. */
167167 typedef TOutputPath OutputPathType;
168168 typedef typename OutputPathType::Pointer OutputPathPointer;
@@ -229,7 +229,7 @@ class ITK_EXPORT ArrivalFunctionToPathFilter :
229229 /* * Get the next end point from which to back propagate. */
230230 virtual const PointType & GetNextEndPoint ( );
231231
232- typename CostFunctionType::Pointer m_CostFunction;
232+ typename CostFunctionType::Pointer m_CostFunction;
233233 typename OptimizerType::Pointer m_Optimizer;
234234 typename OptimizerType::MeasureType m_TerminationValue;
235235 std::vector<PointType> m_PointList;
0 commit comments