]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/MoriRegionGrow.h
...
[FrontAlgorithms.git] / lib / fpa / Image / MoriRegionGrow.h
index 50e8bb1e3cc1769b260bfbfa4fbe4a24c00ac5bc..7a509ec9ac9339fb27f1f44d52aef2cc247a4b52 100644 (file)
@@ -39,10 +39,12 @@ namespace fpa
       itkGetConstMacro( Lower, TPixel );
       itkGetConstMacro( Upper, TPixel );
       itkGetConstMacro( Step, TPixel );
+      itkGetConstMacro( Sensitivity, double );
 
       itkSetMacro( Lower, TPixel );
       itkSetMacro( Upper, TPixel );
       itkSetMacro( Step, TPixel );
+      itkSetMacro( Sensitivity, double );
 
     protected:
       MoriRegionGrow( );
@@ -65,9 +67,17 @@ namespace fpa
       TPixel m_Lower;
       TPixel m_Upper;
       TPixel m_Step;
+      double m_Sensitivity;
 
       _TQueue m_NextQueue;
       unsigned long m_ActualCount;
+      unsigned long m_PrevCount;
+
+      // Standard deviation
+      double m_N;
+      double m_S1;
+      double m_S2;
+      double m_STD;
     };
 
   } // ecapseman