Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace itk
* http://www.insight-journal.org/browse/publication/72
*
* \ingroup ImageFilters
* \ingroup ITKReview
* \ingroup ITKPath
*/
template< typename TInputImage, typename TOutputPath >
class ImageToPathFilter:public PathSource< TOutputPath >
Expand Down Expand Up @@ -75,7 +75,7 @@ class ImageToPathFilter:public PathSource< TOutputPath >

protected:
ImageToPathFilter();
~ImageToPathFilter();
virtual ~ImageToPathFilter();

virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@

namespace itk
{
/**
*
*/

template< typename TInputImage, typename TOutputPath >
ImageToPathFilter< TInputImage, TOutputPath >
::ImageToPathFilter()
Expand All @@ -42,17 +40,13 @@ ImageToPathFilter< TInputImage, TOutputPath >
this->SetNumberOfRequiredInputs(1);
}

/**
*
*/

template< typename TInputImage, typename TOutputPath >
ImageToPathFilter< TInputImage, TOutputPath >
::~ImageToPathFilter()
{}

/**
*
*/

template< typename TInputImage, typename TOutputPath >
void
ImageToPathFilter< TInputImage, TOutputPath >
Expand All @@ -63,6 +57,7 @@ ImageToPathFilter< TInputImage, TOutputPath >
const_cast< InputImageType * >( input ) );
}


/**
* Connect one of the operands for pixel-wise addition
*/
Expand All @@ -76,9 +71,7 @@ ImageToPathFilter< TInputImage, TOutputPath >
const_cast< TInputImage * >( image ) );
}

/**
*
*/

template< typename TInputImage, typename TOutputPath >
const typename ImageToPathFilter< TInputImage, TOutputPath >::InputImageType *
ImageToPathFilter< TInputImage, TOutputPath >
Expand All @@ -87,9 +80,7 @@ ImageToPathFilter< TInputImage, TOutputPath >
return itkDynamicCastInDebugMode< const TInputImage * >( this->GetPrimaryInput() );
}

/**
*
*/

template< typename TInputImage, typename TOutputPath >
const typename ImageToPathFilter< TInputImage, TOutputPath >::InputImageType *
ImageToPathFilter< TInputImage, TOutputPath >
Expand All @@ -98,6 +89,7 @@ ImageToPathFilter< TInputImage, TOutputPath >
return itkDynamicCastInDebugMode< const TInputImage * >( this->ProcessObject::GetInput(idx) );
}


template< typename TInputImage, typename TOutputPath >
void
ImageToPathFilter< TInputImage, TOutputPath >
Expand Down