You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
671 B

template < typename TImage >
class MorphologicalContourInterpolator :
public ImageToImageFilter< TImage, TImage >
{
template < typename T >
friend class MorphologicalContourInterpolatorParallelInvoker;
friend class ::MultiLabelMeshPipeline;
public:
/** Standard class typedefs. */
typedef MorphologicalContourInterpolator Self;
protected:
MorphologicalContourInterpolator();
~MorphologicalContourInterpolator() {
}
typename TImage::PixelType m_Label;
int m_Axis;
bool m_HeuristicAlignment;
private:
MorphologicalContourInterpolator( const Self& ) ITK_DELETE_FUNCTION;
void
operator=( const Self& ) ITK_DELETE_FUNCTION;
};