Changeset 1810 for trunk/MagicSoft/Cosy/videodev
- Timestamp:
- 03/11/03 13:52:48 (22 years ago)
- Location:
- trunk/MagicSoft/Cosy/videodev
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/videodev/CaosFilter.cc
r1802 r1810 345 345 } 346 346 347 RemoveTwins(leds, 5); 348 } 349 350 void CaosFilter::RemoveTwins(Leds &leds, Double_t radius) 351 { 347 352 TIter Next1(&leds); 348 353 … … 368 373 const Double_t dy = y2-y1; 369 374 370 if (dx*dx+dy*dy< 5*5)375 if (dx*dx+dy*dy<radius*radius) 371 376 { 372 377 // FIXME: Interpolation -
trunk/MagicSoft/Cosy/videodev/CaosFilter.h
r1803 r1810 49 49 static void Execute(byte *img, Leds &leds, Double_t conv); 50 50 51 static void FilterLeds(Leds &leds); 51 static void FilterLeds(Leds &leds); 52 static void RemoveTwins(Leds &leds, Double_t radius); 52 53 53 54 ClassDef(CaosFilter, 0)
Note:
See TracChangeset
for help on using the changeset viewer.