- Timestamp:
- 10/04/09 00:53:18 (15 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STLineFinder.cpp
r1643 r1644 111 111 112 112 protected: 113 // supplementary function to control running mean calculations.114 // It adds a specified channel to the running meanbox and113 // supplementary function to control running mean/median calculations. 114 // It adds a specified channel to the running box and 115 115 // removes (ch-maxboxnchan+1)'th channel from there 116 116 // Channels, for which the mask is false or index is beyond the … … 153 153 // last point of the detected line 154 154 // 155 bool itsUseMedian; // true if median statistics is used 156 // to determine the noise level, otherwise 157 // it is the mean of the lowest 80% of deviations 158 // (default) 159 int itsNoiseSampleSize; // sample size used to estimate the noise statistics 160 // Negative value means the whole spectrum is used (default) 155 161 public: 156 162 … … 158 164 LFAboveThreshold(std::list<pair<int,int> > &in_lines, 159 165 int in_min_nchan = 3, 160 casa::Float in_threshold = 5) throw(); 166 casa::Float in_threshold = 5, 167 bool use_median = false, 168 int noise_sample_size = -1) throw(); 161 169 virtual ~LFAboveThreshold() throw(); 162 170 … … 227 235 // mean of lowest 80% of the samples 228 236 float meanLowest80Percent() const; 237 238 // return true if the buffer is full (i.e. statistics are representative) 239 inline bool filledToCapacity() const { return itsBufferFull;} 229 240 230 241 protected: … … 509 520 } 510 521 511 // supplementary function to control running mean calculations.512 // It adds a specified channel to the running meanbox and522 // supplementary function to control running mean/median calculations. 523 // It adds a specified channel to the running box and 513 524 // removes (ch-max_box_nchan+1)'th channel from there 514 525 // Channels, for which the mask is false or index is beyond the … … 585 596 /////////////////////////////////////////////////////////////////////////////// 586 597 // 587 // LFAboveThreshold - a running mean algorithm for line detection598 // LFAboveThreshold - a running mean/median algorithm for line detection 588 599 // 589 600 // … … 593 604 LFAboveThreshold::LFAboveThreshold(std::list<pair<int,int> > &in_lines, 594 605 int in_min_nchan, 595 casa::Float in_threshold) throw() : 606 casa::Float in_threshold, 607 bool use_median, 608 int noise_sample_size) throw() : 596 609 min_nchan(in_min_nchan), threshold(in_threshold), 597 lines(in_lines), running_box(NULL) {} 610 lines(in_lines), running_box(NULL), itsUseMedian(use_median), 611 itsNoiseSampleSize(noise_sample_size) {} 598 612 599 613 LFAboveThreshold::~LFAboveThreshold() throw() … … 711 725 // an assumption made: lines occupy a small part of the spectrum 712 726 713 DebugAssert(edge.second-edge.first,AipsError); 714 LFNoiseEstimator ne(edge.second-edge.first); 727 const size_t noiseSampleSize = itsNoiseSampleSize<0 ? size_t(edge.second-edge.first) : 728 std::min(size_t(itsNoiseSampleSize), size_t(edge.second-edge.first)); 729 DebugAssert(noiseSampleSize,AipsError); 730 const bool globalNoise = (size_t(edge.second - edge.first) == noiseSampleSize); 731 LFNoiseEstimator ne(noiseSampleSize); 715 732 716 733 for (;running_box->haveMore();running_box->next()) { 717 ne.add(running_box->getLinVariance()); 718 } 719 720 const Float offline_variance = ne.meanLowest80Percent(); 734 ne.add(running_box->getLinVariance()); 735 if (ne.filledToCapacity()) { 736 break; 737 } 738 } 739 740 Float offline_variance = -1; // just a flag that it is unset 741 742 if (globalNoise) { 743 offline_variance = itsUseMedian ? ne.median() : ne.meanLowest80Percent(); 744 } 721 745 722 746 // actual search algorithm … … 731 755 running_box->next()) { 732 756 const int ch=running_box->getChannel(); 733 if (running_box->getNumberOfBoxPoints()>=minboxnchan) 757 if (!globalNoise) { 758 // add a next point for a local noise estimate 759 ne.add(running_box->getLinVariance()); 760 } 761 if (running_box->getNumberOfBoxPoints()>=minboxnchan) { 762 if (!globalNoise) { 763 offline_variance = itsUseMedian ? ne.median() : ne.meanLowest80Percent(); 764 } 765 AlwaysAssert(offline_variance>0.,AipsError); 734 766 processChannel(mask[ch] && (fabs(running_box->aboveMean()) >= 735 767 threshold*offline_variance), mask); 736 else processCurLine(mask); // just finish what was accumulated before768 } else processCurLine(mask); // just finish what was accumulated before 737 769 738 770 signs[ch]=getAboveMeanSign(); … … 863 895 // Setting a very large value doesn't usually provide 864 896 // valid detections. 865 // in_box_size the box size for running mean calculation. Default is897 // in_box_size the box size for running mean/median calculation. Default is 866 898 // 1./5. of the whole spectrum size 899 // in_noise_box the box size for off-line noise estimation (if working with 900 // local noise. Negative value means use global noise estimate 901 // Default is -1 (i.e. estimate using the whole spectrum) 902 // in_median true if median statistics is used as opposed to average of 903 // the lowest 80% of deviations (default) 867 904 void STLineFinder::setOptions(const casa::Float &in_threshold, 868 905 const casa::Int &in_min_nchan, 869 906 const casa::Int &in_avg_limit, 870 const casa::Float &in_box_size) throw() 907 const casa::Float &in_box_size, 908 const casa::Float &in_noise_box, 909 const casa::Bool &in_median) throw() 871 910 { 872 911 threshold=in_threshold; … … 874 913 avg_limit=in_avg_limit; 875 914 box_size=in_box_size; 915 itsNoiseBox = in_noise_box; 916 itsUseMedian = in_median; 876 917 } 877 918 … … 958 999 throw AipsError("STLineFinder::findLines - box_size is too small"); 959 1000 1001 // number of elements in the sample for noise estimate 1002 const int noise_box = itsNoiseBox<0 ? -1 : int(nchan * itsNoiseBox); 1003 1004 if ((noise_box!= -1) and (noise_box<2)) 1005 throw AipsError("STLineFinder::findLines - noise_box is supposed to be at least 2 elements"); 1006 960 1007 spectrum.resize(); 961 1008 spectrum = Vector<Float>(scan->getSpectrum(whichRow)); … … 981 1028 try { 982 1029 // line find algorithm 983 LFAboveThreshold lfalg(new_lines,avg_factor*min_nchan, threshold );1030 LFAboveThreshold lfalg(new_lines,avg_factor*min_nchan, threshold, itsUseMedian,noise_box); 984 1031 lfalg.findLines(spectrum,temp_mask,edge,max_box_nchan); 985 1032 signs.resize(lfalg.getSigns().nelements()); -
trunk/src/STLineFinder.h
r1353 r1644 150 150 // in_box_size the box size for running mean calculation. Default is 151 151 // 1./5. of the whole spectrum size 152 // in_noise_box the box size for off-line noise estimation (if working with 153 // local noise. Negative value means use global noise estimate 154 // Default is -1 (i.e. estimate using the whole spectrum) 155 // in_median true if median statistics is used as opposed to average of 156 // the lowest 80% of deviations (default) 152 157 void setOptions(const casa::Float &in_threshold=sqrt(3.), 153 158 const casa::Int &in_min_nchan=3, 154 159 const casa::Int &in_avg_limit=8, 155 const casa::Float &in_box_size=0.2) throw(); 160 const casa::Float &in_box_size=0.2, 161 const casa::Float &in_noise_box=-1., 162 const casa::Bool &in_median = casa::False) throw(); 156 163 157 164 // set the scan to work with (in_scan parameter) … … 241 248 // a buffer for the spectrum 242 249 mutable casa::Vector<casa::Float> spectrum; 250 251 // the box size for off-line noise estimation (if working with 252 // local noise. Negative value means use global noise estimate 253 // Default is -1 (i.e. estimate using the whole spectrum) 254 casa::Float itsNoiseBox; 255 256 // true if median statistics is used as opposed to average of 257 // the lowest 80% of deviations (default) 258 casa::Bool itsUseMedian; 243 259 }; 244 260
Note:
See TracChangeset
for help on using the changeset viewer.