ImageMomentsProgress.h
Classes
- ImageMomentsProgress -- Provides a progress meter for the ImageMoments class (full description)
Interface
- Public Members
- ImageMomentsProgress() : itsMeter(0)
- virtual ~ImageMomentsProgress()
- virtual void initDerived()
- virtual void nstepsDone (uInt nsteps)
- virtual void done()
Review Status
- Date Reviewed:
- yyyy/mm/dd
Prerequisite
Etymology
Display a progress meter for the ImageMoments class
Synopsis
Progress meters can be displayed by the LatticeApply class
which is used by ImageMoments in order to optimally iterate
through the image by lines. To do this, one must derive a
class from LatticeProgress. LatticeApply calls methods declared
in LatticeProgress and implemented in the derived class.
Motivation
I like progress meters !
To Do
Member Description
Constructor makes a null object
Destructor deletes the ProgressMeter pointer
Initialize this object. Here we create the ProgressMeter
This function is called by the init in LatticeProgress
virtual void nstepsDone (uInt nsteps)
Tell the number of steps done so far.
virtual void done()
The process has ended so clean things up.