- Timestamp:
- 06/30/09 12:17:19 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/lagflagger.py
r1583 r1585 44 44 raw_input("Press any key to continue...") 45 45 print "Now select a start and end point by clicking on the middle plot" 46 print 46 print "Start point ..." 47 47 flagstart = int(ginput(show_clicks=False)[0][0]+0.5) 48 print "End point ..." 48 49 flagend = int(ginput(show_clicks=False)[0][0]+0.5) 49 50 xfft = range(len(yfft)) … … 54 55 self.resultaxes.plot(x, yi) 55 56 self.figure.show() 56 inp = raw_input("Commit flags (c), keep (k) or ignore(i)? ").lower() 57 inp = raw_input("Commit flags (c), keep (k) or ignore(i)? ")\ 58 .lower() 57 59 if inp.startswith("c") 58 60 self.flags.append([flagstart, flagend])
Note:
See TracChangeset
for help on using the changeset viewer.