Changeset 4526 for trunk/MagicSoft


Ignore:
Timestamp:
08/06/04 14:51:45 (20 years ago)
Author:
tonello
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4524 r4526  
    1919
    2020                                                 -*-*- END OF LINE -*-*-
     21
     22
     23 2004/08/05: Nadia Tonello
     24
     25   * mimage/MImgCleanStd.cc:
     26     - in the Process, the Step3 (that checks the boundary pixels)
     27        is skipped when no action is espected, i.e. if lvl1 <= lvl2.
     28        This will accelerate the cleaning process in such cases.
    2129
    2230
  • trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc

    r4452 r4526  
    548548    CleanStep1();
    549549
    550     // For speed reasons skip the rest of the cleaning if no
    551     // action will be taken!
    552     if (fCleanLvl1>=fCleanLvl2)
    553         return kTRUE;
    554550
    555551#ifdef DEBUG
     
    557553#endif
    558554    CleanStep2();
     555
     556    // For speed reasons skip the rest of the cleaning if no
     557    // action will be taken!
     558    if (fCleanLvl1<=fCleanLvl2)
     559        return kTRUE;
     560
    559561#ifdef DEBUG
    560562    *fLog << all << "CleanStep 3" << endl;
Note: See TracChangeset for help on using the changeset viewer.