-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.hpp
More file actions
41 lines (32 loc) · 785 Bytes
/
Copy pathViewController.hpp
File metadata and controls
41 lines (32 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// ViewController.h
//
// Created by Yoseph Radding on 1/16/15.
// Copyright (c) 2015 Yoseph Radding. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "VideoSource.h"
#import "ImageProcessor.hpp"
enum States{
GLASS,
PHONE,
DEBUGGLASS,
DEBUGPHONE,
SELECTCOLOR,
SELECTEDCOLOR
};
@interface ViewController : UIViewController <VideoSourceDelegate>
{
double lowHD, lowSD, lowVD, highHD, highSD,highVD;
double lowH, lowS, lowV, highH, highS,highV;
VideoSource* videoSource;
ImageProcessor *imgProcessor;
enum States state;
enum States prevState;
CGPoint touchPoint;
}
@property VideoSource* videoSource;
- (IBAction) changeValue:(id) sender;
- (IBAction)actionStart:(id)sender;
- (IBAction)reset:(id)sender;
@end