Changeset 4526 for trunk/MagicSoft
- Timestamp:
- 08/06/04 14:51:45 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4524 r4526 19 19 20 20 -*-*- 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. 21 29 22 30 -
trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc
r4452 r4526 548 548 CleanStep1(); 549 549 550 // For speed reasons skip the rest of the cleaning if no551 // action will be taken!552 if (fCleanLvl1>=fCleanLvl2)553 return kTRUE;554 550 555 551 #ifdef DEBUG … … 557 553 #endif 558 554 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 559 561 #ifdef DEBUG 560 562 *fLog << all << "CleanStep 3" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.