| 1 | #include "Region.h"
|
|---|
| 2 | #include <vector>
|
|---|
| 3 |
|
|---|
| 4 | // searches for zero crossings in a given vector of floats
|
|---|
| 5 | // for zero crossings in falling edge
|
|---|
| 6 | // give edge = -1
|
|---|
| 7 | //
|
|---|
| 8 | //
|
|---|
| 9 | // returns pointer to vetctor of ints
|
|---|
| 10 |
|
|---|
| 11 | vector<Region> *zerosearch(
|
|---|
| 12 | vector<float> &input,
|
|---|
| 13 | int edge, // search for transitions on rising edge=1, -1:falling
|
|---|
| 14 | unsigned int step, // search in steps of step
|
|---|
| 15 | int VerbosityLevel
|
|---|
| 16 | ){
|
|---|
| 17 |
|
|---|
| 18 | vector<Region> * ZeroPositions = new vector<Region>;
|
|---|
| 19 | Region currentRegion = {0, 0, 0, 0.0};
|
|---|
| 20 | if (step < 1){
|
|---|
| 21 | if (VerbosityLevel > 0)
|
|---|
| 22 | cout << "zerosearch - stepsize=" << step
|
|---|
| 23 | << " is smaller than 1. returning." << endl;
|
|---|
| 24 | return ZeroPositions;
|
|---|
| 25 | }
|
|---|
| 26 | if (input.size() < step){
|
|---|
| 27 | if (VerbosityLevel > 0)
|
|---|
| 28 | cout << "zerosearch - input-vector.size()="<< input.size()
|
|---|
| 29 | << " is smaller than stepsize=" << step
|
|---|
| 30 | << "returning." << endl;
|
|---|
| 31 | return ZeroPositions;
|
|---|
| 32 | }
|
|---|
| 33 |
|
|---|
| 34 | if (edge > 0) // search for zero-x-ings on the rising edge
|
|---|
| 35 | {
|
|---|
| 36 | for (unsigned int sl = 0 ; sl < (input.size()-step) ; sl+=step)
|
|---|
| 37 | {
|
|---|
| 38 | if (input[sl] > 0.0) // can't be a rising 0-x-ing
|
|---|
| 39 | {
|
|---|
| 40 | continue;
|
|---|
| 41 | }
|
|---|
| 42 | if (input[sl] * input[sl+step] <= 0.0) // 0-x-ing or both are 0
|
|---|
| 43 | {
|
|---|
| 44 | currentRegion.begin = sl;
|
|---|
| 45 | currentRegion.end = sl+step;
|
|---|
| 46 | ZeroPositions->push_back(currentRegion);
|
|---|
| 47 | }
|
|---|
| 48 | }
|
|---|
| 49 | }
|
|---|
| 50 | else if (edge < 0) // search for zero-x-ings on the falling edge
|
|---|
| 51 | {
|
|---|
| 52 | for (unsigned int sl = 0 ; sl < (input.size()-step) ; sl+=step)
|
|---|
| 53 | {
|
|---|
| 54 | if (input[sl] < 0.0) // can't be a falling 0-x-ing
|
|---|
| 55 | {
|
|---|
| 56 | continue;
|
|---|
| 57 | }
|
|---|
| 58 | if (input[sl] * input[sl+step] <= 0.0) // 0-x-ing or both are 0
|
|---|
| 59 | {
|
|---|
| 60 | currentRegion.begin = sl;
|
|---|
| 61 | currentRegion.end = sl+step;
|
|---|
| 62 | ZeroPositions->push_back(currentRegion);
|
|---|
| 63 | }
|
|---|
| 64 | }
|
|---|
| 65 |
|
|---|
| 66 | }
|
|---|
| 67 | else // search for zero-x-ings on both esges
|
|---|
| 68 | {
|
|---|
| 69 | for (unsigned int sl = 0 ; sl < (input.size()-step) ; sl+=step)
|
|---|
| 70 | {
|
|---|
| 71 | if (input[sl] * input[sl+step] <= 0.0) // 0-x-ing or both are 0
|
|---|
| 72 | {
|
|---|
| 73 | currentRegion.begin = sl;
|
|---|
| 74 | currentRegion.end = sl+step;
|
|---|
| 75 | ZeroPositions->push_back(currentRegion);
|
|---|
| 76 | }
|
|---|
| 77 | }
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 | return ZeroPositions;
|
|---|
| 82 | }
|
|---|
| 83 |
|
|---|
| 84 | size_t ShiftRegionBy(vector<Region> &src,
|
|---|
| 85 | int Shift,
|
|---|
| 86 | int VerbosityLevel)
|
|---|
| 87 | {
|
|---|
| 88 | vector<Region>::iterator it;
|
|---|
| 89 | // I copy code here ... not good, but I hope nobody is giving VL > 10 ever...
|
|---|
| 90 | if (VerbosityLevel > 10){
|
|---|
| 91 | for (it = src.begin() ; it < src.end() ; it++){
|
|---|
| 92 | cout << " it->begin="<< it->begin;
|
|---|
| 93 | it->begin += Shift;
|
|---|
| 94 | cout << "--> shifted="<< it->begin << endl;
|
|---|
| 95 | cout << " it->end="<< it->end;
|
|---|
| 96 | it->end += Shift;
|
|---|
| 97 | cout << "--> shifted="<< it->end << endl;
|
|---|
| 98 | cout << " it->maxPos="<< it->maxPos;
|
|---|
| 99 | it->maxPos += Shift;
|
|---|
| 100 | cout << "--> shifted="<< it->maxPos << endl;
|
|---|
| 101 | }
|
|---|
| 102 | return src.size();
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | for (it = src.begin() ; it < src.end() ; it++){
|
|---|
| 106 | it->begin += Shift;
|
|---|
| 107 | it->end += Shift;
|
|---|
| 108 | it->maxPos += Shift;
|
|---|
| 109 | }
|
|---|
| 110 | return src.size();
|
|---|
| 111 | }
|
|---|
| 112 |
|
|---|
| 113 | size_t EnlargeRegion(vector<Region> &src,
|
|---|
| 114 | int Left,
|
|---|
| 115 | int Right,
|
|---|
| 116 | int VerbosityLevel)
|
|---|
| 117 | {
|
|---|
| 118 | vector<Region>::iterator it;
|
|---|
| 119 | // I copy code here ... not good, but I hope nobody is giving VL > 10 ever...
|
|---|
| 120 | if (VerbosityLevel > 10){
|
|---|
| 121 | for (it = src.begin() ; it < src.end() ; it++){
|
|---|
| 122 | cout << " it->begin="<< it->begin;
|
|---|
| 123 | it->begin -= Left;
|
|---|
| 124 | cout << "--> enlarged="<< it->begin << endl;
|
|---|
| 125 | cout << " it->end="<< it->end;
|
|---|
| 126 | it->end += Right;
|
|---|
| 127 | cout << "--> enlarged="<< it->end << endl;
|
|---|
| 128 | }
|
|---|
| 129 | return src.size();
|
|---|
| 130 | }
|
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 | for (it = src.begin() ; it < src.end() ; it++){
|
|---|
| 134 | it->begin -= Left;
|
|---|
| 135 | it->end += Right;
|
|---|
| 136 | }
|
|---|
| 137 | return src.size();
|
|---|
| 138 |
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| 141 | #include <limits>
|
|---|
| 142 | size_t findAbsMaxInRegions(
|
|---|
| 143 | vector<Region> ®ions,
|
|---|
| 144 | vector<float> &data,
|
|---|
| 145 | int VerbosityLevel)
|
|---|
| 146 | {
|
|---|
| 147 | vector<Region>::iterator reg;
|
|---|
| 148 | for (reg = regions.begin() ; reg < regions.end() ; reg++){
|
|---|
| 149 | reg->maxVal=-numeric_limits<float>::max();
|
|---|
| 150 | // 1st check if both ends of the region are in the data-vector
|
|---|
| 151 | if (reg->begin < 0) reg->begin=0;
|
|---|
| 152 | if ((unsigned int)reg->end > data.size()-1) reg->end=data.size()-1;
|
|---|
| 153 |
|
|---|
| 154 | // TODO or TOTHINKOF:
|
|---|
| 155 | // Region might overlap ... I don't care .. I just search
|
|---|
| 156 | // in a later step Maxima at the same Positions can be removed...
|
|---|
| 157 | // of course this means, some searches were needless ...
|
|---|
| 158 | //cout << "searching from " << reg->begin << " to " << reg->end << endl;
|
|---|
| 159 | for (unsigned int pos=reg->begin; pos <= (unsigned int)reg->end; pos++){
|
|---|
| 160 | if (data[pos] > reg->maxVal){
|
|---|
| 161 | reg->maxVal = data[pos];
|
|---|
| 162 | reg->maxPos = pos;
|
|---|
| 163 | }
|
|---|
| 164 | }
|
|---|
| 165 | if (VerbosityLevel > 3) {
|
|---|
| 166 | cout << "findAbsMaxInRegions - found Max at:"
|
|---|
| 167 | << reg->maxPos << " with Value:" << reg->maxVal << endl;
|
|---|
| 168 | }
|
|---|
| 169 | }
|
|---|
| 170 | return regions.size();
|
|---|
| 171 | }
|
|---|
| 172 |
|
|---|
| 173 | #include <algorithm>
|
|---|
| 174 | bool compMaxPosOfRegions (Region a, Region b) {
|
|---|
| 175 | return (a.maxPos == b.maxPos);
|
|---|
| 176 | }
|
|---|
| 177 |
|
|---|
| 178 | size_t removeEqualMaxima(
|
|---|
| 179 | vector<Region> ®ions,
|
|---|
| 180 | int VerbosityLevel)
|
|---|
| 181 | {
|
|---|
| 182 | if (VerbosityLevel > 2){
|
|---|
| 183 | cout << "removeEqualMaxima:" << endl;
|
|---|
| 184 | cout << "region before contains:" << endl;
|
|---|
| 185 | for (unsigned int i=0; i<regions.size(); i++){
|
|---|
| 186 | cout << i <<"\t";
|
|---|
| 187 | cout << regions[i].begin <<"\t";
|
|---|
| 188 | cout << regions[i].end <<"\t";
|
|---|
| 189 | cout << regions[i].maxPos <<"\t";
|
|---|
| 190 | cout << regions[i].maxVal <<"\t";
|
|---|
| 191 | cout << endl;
|
|---|
| 192 | }
|
|---|
| 193 | }
|
|---|
| 194 |
|
|---|
| 195 | vector<Region>::iterator it;
|
|---|
| 196 | it = unique (regions.begin(), regions.end() , compMaxPosOfRegions);
|
|---|
| 197 | regions.resize( it - regions.begin() );
|
|---|
| 198 |
|
|---|
| 199 | if (VerbosityLevel > 1){
|
|---|
| 200 | cout << "region now contains:" << endl;
|
|---|
| 201 | for (unsigned int i=0; i<regions.size(); i++){
|
|---|
| 202 | cout << i <<"\t";
|
|---|
| 203 | cout << regions[i].begin <<"\t";
|
|---|
| 204 | cout << regions[i].end <<"\t";
|
|---|
| 205 | cout << regions[i].maxPos <<"\t";
|
|---|
| 206 | cout << regions[i].maxVal <<"\t";
|
|---|
| 207 | cout << endl;
|
|---|
| 208 | }
|
|---|
| 209 | }
|
|---|
| 210 | return regions.size();
|
|---|
| 211 | }
|
|---|
| 212 |
|
|---|
| 213 | size_t removeRegionOnFallingEdge(
|
|---|
| 214 | vector<Region> ®ions,
|
|---|
| 215 | unsigned int FallingEdgeWidth,
|
|---|
| 216 | int VerbosityLevel)
|
|---|
| 217 | {
|
|---|
| 218 | if ( FallingEdgeWidth < 1){
|
|---|
| 219 | if (VerbosityLevel > 0){
|
|---|
| 220 | cout << " removeRegionOnFallingEdge: FallingEdgeWidth < 1" << endl;
|
|---|
| 221 | cout << " FallingEdgeWidth =" << FallingEdgeWidth << endl;
|
|---|
| 222 | cout << "returning." << endl;
|
|---|
| 223 | return regions.size();
|
|---|
| 224 | }
|
|---|
| 225 | }
|
|---|
| 226 | if (regions.size() < 1){
|
|---|
| 227 | if (VerbosityLevel > 3)
|
|---|
| 228 | cout << "removeRegionOnFallingEdge: source vector empty." << endl;
|
|---|
| 229 | return 0;
|
|---|
| 230 | }
|
|---|
| 231 |
|
|---|
| 232 | vector<Region>::reverse_iterator it = regions.rbegin();
|
|---|
| 233 | while( it != regions.rend()-1 )
|
|---|
| 234 | {
|
|---|
| 235 | if (VerbosityLevel >10)
|
|---|
| 236 | cout << it->maxPos << "\t" << (it+1)->maxPos << "\t" << it->maxPos - (it+1)->maxPos << endl;
|
|---|
| 237 |
|
|---|
| 238 | if ( it->maxPos - (it+1)->maxPos < (int)FallingEdgeWidth) {
|
|---|
| 239 | if (VerbosityLevel > 3)
|
|---|
| 240 | cout << "erasing Region @ " << it->maxPos << endl;
|
|---|
| 241 | regions.erase( --it.base() ) ;
|
|---|
| 242 | ++it;
|
|---|
| 243 | }else
|
|---|
| 244 | ++it;
|
|---|
| 245 | }
|
|---|
| 246 |
|
|---|
| 247 | return regions.size();
|
|---|
| 248 | }
|
|---|
| 249 |
|
|---|
| 250 |
|
|---|
| 251 | size_t removeRegionWithMaxOnEdge(
|
|---|
| 252 | vector<Region> ®ions,
|
|---|
| 253 | unsigned int EdgeWidth,
|
|---|
| 254 | int VerbosityLevel)
|
|---|
| 255 | {
|
|---|
| 256 | if (EdgeWidth < 1){
|
|---|
| 257 | if (VerbosityLevel > 0){
|
|---|
| 258 | cout << "removeReginWithMaximaOnEdge: EdgeWidth < 1" << endl;
|
|---|
| 259 | cout << "EdgeWidth=" << EdgeWidth << endl;
|
|---|
| 260 | cout << "returning." << endl;
|
|---|
| 261 | return regions.size();
|
|---|
| 262 | }
|
|---|
| 263 | }
|
|---|
| 264 |
|
|---|
| 265 | vector<Region>::iterator it = regions.begin();
|
|---|
| 266 | while( it != regions.end() )
|
|---|
| 267 | {
|
|---|
| 268 | // cout << it->begin << "\t";
|
|---|
| 269 | // cout << it->maxPos << "\t";
|
|---|
| 270 | // cout << it->end << "\t";
|
|---|
| 271 | // cout << it->maxVal << endl;
|
|---|
| 272 |
|
|---|
| 273 | if (it->maxPos < (int)(it->begin+EdgeWidth)) {
|
|---|
| 274 | if (VerbosityLevel > 3)
|
|---|
| 275 | cout << "erasing Region(max@left edge) " << it->maxPos << endl;
|
|---|
| 276 | it = regions.erase( it ) ;
|
|---|
| 277 | //++it;
|
|---|
| 278 | }else if (it->maxPos > (int)(it->end-EdgeWidth)) {
|
|---|
| 279 | if (VerbosityLevel > 3)
|
|---|
| 280 | cout << "erasing Region(max@right edge) " << it->maxPos << endl;
|
|---|
| 281 | it = regions.erase( it ) ;
|
|---|
| 282 | //++it;
|
|---|
| 283 | }else
|
|---|
| 284 | ++it;
|
|---|
| 285 |
|
|---|
| 286 | }
|
|---|
| 287 |
|
|---|
| 288 | return regions.size();
|
|---|
| 289 | }
|
|---|
| 290 |
|
|---|
| 291 | size_t removeMaximaBelow(
|
|---|
| 292 | vector<Region> ®ions,
|
|---|
| 293 | float threshold,
|
|---|
| 294 | int VerbosityLevel)
|
|---|
| 295 | {
|
|---|
| 296 | if (threshold < 0){
|
|---|
| 297 | if (VerbosityLevel > 0)
|
|---|
| 298 | cout << "removeMaximaBelow: threshold < 0" << endl;
|
|---|
| 299 | cout << "threshold=" << threshold << endl;
|
|---|
| 300 | cout << "returning." << endl;
|
|---|
| 301 | return regions.size();
|
|---|
| 302 | }
|
|---|
| 303 |
|
|---|
| 304 | vector<Region>::iterator it = regions.begin();
|
|---|
| 305 | while( it != regions.end() )
|
|---|
| 306 | {
|
|---|
| 307 | if (it->maxVal < threshold ) {
|
|---|
| 308 | if (VerbosityLevel > 3){
|
|---|
| 309 | cout << "removing max " << it->maxVal << "\t";
|
|---|
| 310 | cout << " @ " << it->maxPos << "\t";
|
|---|
| 311 | cout << endl;
|
|---|
| 312 | }
|
|---|
| 313 | it = regions.erase( it ) ;
|
|---|
| 314 | }else
|
|---|
| 315 | ++it;
|
|---|
| 316 | }
|
|---|
| 317 |
|
|---|
| 318 | return regions.size();
|
|---|
| 319 | }
|
|---|
| 320 |
|
|---|
| 321 | size_t removeMaximaAbove(
|
|---|
| 322 | vector<Region> ®ions,
|
|---|
| 323 | float threshold,
|
|---|
| 324 | int VerbosityLevel)
|
|---|
| 325 | {
|
|---|
| 326 | if (threshold < 0){
|
|---|
| 327 | if (VerbosityLevel > 0)
|
|---|
| 328 | cout << "removeMaximaAbove: threshold < 0" << endl;
|
|---|
| 329 | cout << "threshold=" << threshold << endl;
|
|---|
| 330 | cout << "returning." << endl;
|
|---|
| 331 | return regions.size();
|
|---|
| 332 | }
|
|---|
| 333 |
|
|---|
| 334 | vector<Region>::iterator it = regions.begin();
|
|---|
| 335 | while( it != regions.end() )
|
|---|
| 336 | {
|
|---|
| 337 | if (it->maxVal > threshold ) {
|
|---|
| 338 | if (VerbosityLevel > 3){
|
|---|
| 339 | cout << "removing max " << it->maxVal << "\t";
|
|---|
| 340 | cout << " @ " << it->maxPos << "\t";
|
|---|
| 341 | cout << endl;
|
|---|
| 342 | }
|
|---|
| 343 | it = regions.erase( it ) ;
|
|---|
| 344 | }else
|
|---|
| 345 | ++it;
|
|---|
| 346 | }
|
|---|
| 347 |
|
|---|
| 348 | return regions.size();
|
|---|
| 349 | }
|
|---|
| 350 |
|
|---|
| 351 | ////////////////
|
|---|
| 352 | ////////////// old Version of the code
|
|---|
| 353 | /*
|
|---|
| 354 | for (unsigned int sl = step; sl < input.size(); sl+=step){
|
|---|
| 355 | if (input[sl] * input[sl-] < 0 || input[sl]==0.0 ){ // sign change --> zero crossing OR really zero
|
|---|
| 356 |
|
|---|
| 357 | if ( (input[sl-1] - input[sl]) * edge < 0){ // this is the crossing the user wanted
|
|---|
| 358 |
|
|---|
| 359 | // check if we go lower than a certain limit in the next few slices
|
|---|
| 360 | for ( int lala=0; lala<post; lala++){
|
|---|
| 361 | if (input[sl+lala] > 1.5) {
|
|---|
| 362 | zeroPositions->push_back(sl);
|
|---|
| 363 | sl += lala;
|
|---|
| 364 | break;
|
|---|
| 365 | }
|
|---|
| 366 | }
|
|---|
| 367 |
|
|---|
| 368 | } else if ( (input[sl-1] - input[sl]) * edge > 0){ // this is the zero x-ing the user did not want
|
|---|
| 369 |
|
|---|
| 370 | // do nothing
|
|---|
| 371 |
|
|---|
| 372 | } else { // sl and sl-1 are equal .. don't know waht do to...
|
|---|
| 373 |
|
|---|
| 374 | }
|
|---|
| 375 |
|
|---|
| 376 | }
|
|---|
| 377 |
|
|---|
| 378 | } // end of loop over slices - between pre and post
|
|---|
| 379 |
|
|---|
| 380 | */
|
|---|