]> Creatis software - cpPlugins.git/blobdiff - lib/cpExtensions/Algorithms/ParallelImageMean.hxx
...
[cpPlugins.git] / lib / cpExtensions / Algorithms / ParallelImageMean.hxx
similarity index 73%
rename from lib/cpPlugins/Extensions/Algorithms/ParallelImageMean.hxx
rename to lib/cpExtensions/Algorithms/ParallelImageMean.hxx
index bb066e19f5f75787f26e800deecf46ec6878b916..b3e4716075bdcaad0326ae229a0f4d2448299ba8 100644 (file)
@@ -2,14 +2,14 @@
 // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
 // -------------------------------------------------------------------------
 
-#ifndef __CPPLUGINS__EXTENSIONS__ALGORITHMS__PARALLELIMAGEMEAN__HXX__
-#define __CPPLUGINS__EXTENSIONS__ALGORITHMS__PARALLELIMAGEMEAN__HXX__
+#ifndef __CPEXTENSIONS__ALGORITHMS__PARALLELIMAGEMEAN__HXX__
+#define __CPEXTENSIONS__ALGORITHMS__PARALLELIMAGEMEAN__HXX__
 
 #include <itkImageRegionConstIterator.h>
 
 // -------------------------------------------------------------------------
 template< class I >
-cpPlugins::Extensions::Algorithms::ParallelImageMean< I >::
+cpExtensions::Algorithms::ParallelImageMean< I >::
 ParallelImageMean( )
   : Superclass( )
 {
@@ -17,14 +17,14 @@ ParallelImageMean( )
 
 // -------------------------------------------------------------------------
 template< class I >
-cpPlugins::Extensions::Algorithms::ParallelImageMean< I >::
+cpExtensions::Algorithms::ParallelImageMean< I >::
 ~ParallelImageMean( )
 {
 }
 
 // -------------------------------------------------------------------------
 template< class I >
-void cpPlugins::Extensions::Algorithms::ParallelImageMean< I >::
+void cpExtensions::Algorithms::ParallelImageMean< I >::
 BeforeThreadedExecution( )
 {
   this->m_Mean.SetSize( _TPixelTraits::GetLength( ) );
@@ -34,7 +34,7 @@ BeforeThreadedExecution( )
 
 // -------------------------------------------------------------------------
 template< class I >
-void cpPlugins::Extensions::Algorithms::ParallelImageMean< I >::
+void cpExtensions::Algorithms::ParallelImageMean< I >::
 ThreadedExecution( const DomainType& region, const itk::ThreadIdType id )
 {
   itk::ImageRegionConstIterator< I > i( this->m_Associate, region );
@@ -54,12 +54,12 @@ ThreadedExecution( const DomainType& region, const itk::ThreadIdType id )
 
 // -------------------------------------------------------------------------
 template< class I >
-void cpPlugins::Extensions::Algorithms::ParallelImageMean< I >::
+void cpExtensions::Algorithms::ParallelImageMean< I >::
 AfterThreadedExecution( )
 {
   this->m_Mean /= double( this->m_N );
 }
 
-#endif // __CPPLUGINS__EXTENSIONS__ALGORITHMS__PARALLELIMAGEMEAN__HXX__
+#endif // __CPEXTENSIONS__ALGORITHMS__PARALLELIMAGEMEAN__HXX__
 
 // eof - $RCSfile$