X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpExtensions%2FAlgorithms%2FKalmanConstantFilter.h;fp=lib%2FcpExtensions%2FAlgorithms%2FKalmanConstantFilter.h;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=82cd263eda9de5e4d10ea318935ade8aa9a512d3;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/cpExtensions/Algorithms/KalmanConstantFilter.h b/lib/cpExtensions/Algorithms/KalmanConstantFilter.h deleted file mode 100644 index 82cd263..0000000 --- a/lib/cpExtensions/Algorithms/KalmanConstantFilter.h +++ /dev/null @@ -1,56 +0,0 @@ -// ------------------------------------------------------------------------- -// @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co) -// ------------------------------------------------------------------------- - -#ifndef __CPEXTENSIONS__ALGORITHMS__KALMANCONSTANTFILTER__H__ -#define __CPEXTENSIONS__ALGORITHMS__KALMANCONSTANTFILTER__H__ - -#include - -namespace cpExtensions -{ - namespace Algorithms - { - /** - */ - template< typename T > - class cpExtensions_EXPORT KalmanConstantFilter - : public KalmanFilter< T > - { - public: - typedef KalmanConstantFilter Self; - typedef KalmanFilter< T > Superclass; - typedef itk::SmartPointer< Self > Pointer; - typedef itk::SmartPointer< const Self > ConstPointer; - - typedef typename Superclass::TScalar TScalar; - typedef typename Superclass::TMatrix TMatrix; - typedef typename Superclass::TVector TVector; - - public: - itkNewMacro( Self ); - itkTypeMacro( KalmanConstantFilter, KalmanFilter ); - - public: - void Configure( unsigned int m ); - - // Iteration methods - virtual void Initialize( ) cpExtensions_OVERRIDE; - - protected: - KalmanConstantFilter( ); - virtual ~KalmanConstantFilter( ); - - private: - // Purposely not implemented. - KalmanConstantFilter( const Self& ); - void operator=( const Self& ); - }; - - } // ecapseman - -} // ecapseman - -#endif // __CPEXTENSIONS__ALGORITHMS__KALMANCONSTANTFILTER__H__ - -// eof - $RCSfile$