eyeDrops  v2.3
A new approach to detecting eye blinks.
BlinkPredictionViewController.h
Go to the documentation of this file.
1 
31 #import <Cocoa/Cocoa.h>
32 #import <CorePlot/CorePlot.h>
33 
43 @interface BlinkPredictionViewController : NSViewController <CPTPlotAreaDelegate, CPTPlotSpaceDelegate, CPTPlotDataSource, CPTPlotDelegate> {
44 
48  CGFloat titleSize;
49 
53  CGFloat plotMaxTime;
54 
58  CPTGraph *graph;
59 
63  CPTScatterPlot *blinkDataPlot;
64 }
65 
69 @property (strong, nonatomic, nonnull) IBOutlet CPTGraphHostingView *hostingView;
70 
79 - (void)setParameters:(NSUInteger)time titleSize:(NSUInteger)aTitleSize;
80 
87 - (void)generatePlotInView:(nonnull NSView *)view;
88 
95 - (void)showData:(nonnull id)sender;
96 
97 // - (NSUInteger)numberOfRecordsForPlot:(nonnull CPTPlot *)plot;
98 
105 - (void)incomingCalibrationData:(nonnull id)sender;
106 
110 - (void)resetGraph;
111 
112 @end