Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkProgressReporter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkProgressReporter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2005/08/24 20:36:52 $
00007   Version:   $Revision: 1.9 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef _itkProgressReporter_h
00018 #define _itkProgressReporter_h
00019 
00020 #include "itkProcessObject.h"
00021 
00022 namespace itk
00023 {
00024 
00058 class ITKCommon_EXPORT ProgressReporter
00059 {
00060 public:
00062   ProgressReporter(ProcessObject* filter, int threadId,
00063                    unsigned long numberOfPixels,
00064                    unsigned long numberOfUpdates = 100,
00065                    float initialProgress = 0.0f,
00066                    float progressWeight  = 1.0f );
00067   
00069   ~ProgressReporter();
00070   
00072   void CompletedPixel()
00073     {
00074     // Inline implementation for efficiency.
00075     if(--m_PixelsBeforeUpdate == 0)
00076       {
00077       m_PixelsBeforeUpdate = m_PixelsPerUpdate;
00078       m_CurrentPixel += m_PixelsPerUpdate;
00079       // only thread 0 should update the progress of the filter
00080       if (m_ThreadId == 0)
00081         {
00082         m_Filter->UpdateProgress(
00083           m_CurrentPixel * m_InverseNumberOfPixels * m_ProgressWeight + m_InitialProgress);
00084         }
00085       // all threads needs to check the abort flag
00086       if( m_Filter->GetAbortGenerateData() )
00087         {
00088         throw ProcessAborted();
00089         }
00090       }
00091     }
00092 
00093 protected:
00094   ProcessObject* m_Filter;
00095   int m_ThreadId;
00096   float m_InverseNumberOfPixels;
00097   unsigned long m_CurrentPixel;
00098   unsigned long m_PixelsPerUpdate;
00099   unsigned long m_PixelsBeforeUpdate;
00100   float  m_InitialProgress;
00101   float  m_ProgressWeight;
00102 
00103 private:
00104   ProgressReporter(); //purposely not implemented
00105 
00106 };
00107 
00108 } // end namespace itk
00109 
00110 #endif

Generated at Wed May 24 23:53:27 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000