X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FDijkstra.h;h=118cc27abc76593139574fc50b05d344e15a6006;hb=40fb0405cfef444001429f8ba49c407ce9168a94;hp=5c2460f97515357f743015919f5e677d17da3505;hpb=56b8bb48cc05a297a3faa264f8f2a88de21ef203;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/Dijkstra.h b/lib/fpa/Image/Dijkstra.h index 5c2460f..118cc27 100644 --- a/lib/fpa/Image/Dijkstra.h +++ b/lib/fpa/Image/Dijkstra.h @@ -1,8 +1,10 @@ -#ifndef __FPA__IMAGE__DIJKSTRA__H__ -#define __FPA__IMAGE__DIJKSTRA__H__ +#ifndef __fpa__Image__Dijkstra__h__ +#define __fpa__Image__Dijkstra__h__ #include #include +#include +#include namespace fpa { @@ -10,54 +12,33 @@ namespace fpa { /** */ - template< class _TInputImage, class _TOutputImage = _TInputImage > + template< class _TInputImage, class _TOutputImage > class Dijkstra - : public fpa::Base::Dijkstra< fpa::Image::Algorithm< _TInputImage, _TOutputImage > > + : public fpa::Base::Dijkstra< fpa::Image::Algorithm< _TInputImage, _TOutputImage >, fpa::Image::MinimumSpanningTree< _TInputImage::ImageDimension > > { public: - typedef fpa::Base::Dijkstra< fpa::Image::Algorithm< _TInputImage, _TOutputImage > > Superclass; - typedef Dijkstra Self; - typedef itk::SmartPointer< Self > Pointer; - typedef itk::SmartPointer< const Self > ConstPointer; + typedef Dijkstra Self; + typedef fpa::Image::Algorithm< _TInputImage, _TOutputImage > TAlgorithm; + typedef fpa::Image::MinimumSpanningTree< _TInputImage::ImageDimension > TMST; + typedef fpa::Base::Dijkstra< TAlgorithm, TMST > Superclass; + typedef itk::SmartPointer< Self > Pointer; + typedef itk::SmartPointer< const Self > ConstPointer; - // Template arguments - typedef typename Superclass::TVertex TVertex; - typedef typename Superclass::TScalar TScalar; - typedef typename Superclass::TFilter TFilter; - typedef typename Superclass::TVertexCompare TVertexCompare; - typedef typename Superclass::TFrontId TFrontId; - typedef typename Superclass::TCollision TCollision; - typedef typename Superclass::TCollisionsRow TCollisionsRow; - typedef typename Superclass::TCollisions TCollisions; - typedef typename Superclass::TNodeLabel TNodeLabel; - typedef typename Superclass::TNode TNode; - typedef typename Superclass::TNodes TNodes; - typedef typename Superclass::TVertices TVertices; + typedef typename Superclass::TOutput TOutput; + typedef typename Superclass::TVertex TVertex; public: itkNewMacro( Self ); - itkTypeMacro( Dijkstra, fpa::Base::Dijkstra ); - - itkBooleanMacro( UseImageSpacing ); - itkGetConstMacro( UseImageSpacing, bool ); - itkSetMacro( UseImageSpacing, bool ); + itkTypeMacro( fpa::Image::Dijkstra, fpa::Base::Dijkstra ); protected: Dijkstra( ); virtual ~Dijkstra( ); - // Dijkstra methods to be overloaded - virtual TScalar _Cost( - const TVertex& a, const TVertex& b - ) const fpa_OVERRIDE; - private: - // Purposely not implemented + // Purposely not defined Dijkstra( const Self& other ); Self& operator=( const Self& other ); - - protected: - bool m_UseImageSpacing; }; } // ecapseman @@ -66,8 +47,8 @@ namespace fpa #ifndef ITK_MANUAL_INSTANTIATION # include -#endif +#endif // ITK_MANUAL_INSTANTIATION -#endif // __FPA__IMAGE__DIJKSTRA__H__ +#endif // __fpa__Image__Dijkstra__h__ // eof - $RCSfile$