-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiSightControlPanel.m
More file actions
283 lines (241 loc) · 7.81 KB
/
Copy pathiSightControlPanel.m
File metadata and controls
283 lines (241 loc) · 7.81 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
* iSightControlPanel.m
*
* This file is part of iSightControlPanel.
*
* iSightControlPanel is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* iSightControlPanel is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with iSightControlPanel. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2012 Lieven Govaerts. All rights reserved.
*/
#import "iSightControlPanel.h"
#import "CameraController.h"
@implementation iSightControlPanel
QTCaptureSession *captureSession;
CameraController *cameraCtrl;
BOOL cameraConfigured = FALSE;
// Setup methods
- (id)init
{
self = [super init];
[self initExposureModes];
return self;
}
- (long) initCheckbox:(NSButton *)checkbox control:(CameraControl_t)control
{
long current = [cameraCtrl getValue:control selector:CamPar_Current];
[checkbox setState:current];
return current;
}
/**
* initSlider: initiate the slider with the Minimum, Maximum and Current value
* for the selected control (brightness, contrast...).
*/
- (long) initSlider:(NSSlider *)slider control:(CameraControl_t)control
{
long min = [cameraCtrl getValue:control selector:CamPar_Min];
[slider setMinValue:min];
long max = [cameraCtrl getValue:control selector:CamPar_Max];
[slider setMaxValue:max];
long current = [cameraCtrl getValue:control selector:CamPar_Current];
[slider setIntValue:current];
long resolution = [cameraCtrl getValue:control selector:CamPar_Resolution];
if (resolution > 1)
{
[slider setAltIncrementValue:resolution];
[slider setAllowsTickMarkValuesOnly:TRUE];
long nrOfTicks = 1 + /* for minimum */
(max - min) / resolution; /* nr of times resolution
fits in total range */
[slider setNumberOfTickMarks:nrOfTicks];
}
return current;
}
- (void) initExposureSlider:(NSSlider *)slider control:(CameraControl_t)control
{
long value;
value = [cameraCtrl getValue:CamPar_AutoExposureMode selector:CamPar_Current];
if (value == CamPar_AEAuto)
[slider setEnabled:FALSE];
else
{
[slider setEnabled:TRUE];
/* Seems that when switch from Shutter Priority to Manual the GET_CUR
value is changed, but the camera itself still uses the original value. */
long exposure = [self initSlider:slider control:CamPar_ExposureAbs];
[cameraCtrl setValue:exposure control:CamPar_ExposureAbs];
}
}
/**
* initExposureModePopup: select the current exposure mode.
*/
- (void) initExposureModePopup:(NSPopUpButton *)popup
{
long value;
value = [cameraCtrl getValue:CamPar_AutoExposureMode selector:CamPar_Current];
for (ExposureMode *em in exposureModes)
{
if ([em mode] == value)
{
[self willChangeValueForKey: @"selectedExposureMode"];
selectedExposureMode = em;
[self didChangeValueForKey: @"selectedExposureMode"];
break;
}
}
}
- (void) initWhiteBalanceTempSlider:(NSSlider *)slider control:(CameraControl_t)control
{
long value;
value = [cameraCtrl getValue:CamPar_AutoWhiteBalanceTemp selector:CamPar_Current];
if (value)
[slider setEnabled:FALSE];
else
{
[slider setEnabled:TRUE];
[self initSlider:slider control:control];
}
}
/**
* initExposureModes: initiate the exposure popup with the list of available
* modes.
*/
- (void) initExposureModes
{
ExposureMode* mode;
exposureModes =[[NSMutableArray alloc] init];
mode = [[ExposureMode alloc] set:CamPar_AEAuto modeName:@"Auto mode"];
[exposureModes addObject:mode];
mode = [[ExposureMode alloc] set:CamPar_AEManual modeName:@"Manual mode"];
[exposureModes addObject:mode];
mode = [[ExposureMode alloc] set:CamPar_AEShutterPriority modeName:@"Shutter Priority Mode"];
[exposureModes addObject:mode];
/* Aperture priority mode not supported by iSight.
If support for other camera's is added: the supported modes can be queried
with the CamPar_Resolution selector. */
/*
mode = [[ExposureMode alloc] set:CamPar_AEAperturePriority modeName:@"Aperture Priority Mode"];
[exposureModes addObject:mode];
*/
}
- (void) awakeFromNib
{
[lbl setStringValue:@""];
captureSession = [[QTCaptureSession alloc] init];
BOOL success = NO;
NSError *error;
// Find the device and create the device input. Then add it to the session.
QTCaptureDevice *device = [QTCaptureDevice defaultInputDeviceWithMediaType:QTMediaTypeVideo];
if (device) {
success = [device open:&error];
if (!success) {
// Handle error
[lbl setStringValue:@"Error"];
}
captureDeviceInput = [[QTCaptureDeviceInput alloc] initWithDevice:device];
success = [captureSession addInput:captureDeviceInput error:&error];
if (!success) {
// Handle error
[lbl setStringValue:@"Error"];
}
[captureView setCaptureSession:captureSession];
}
[captureSession startRunning];
/* Set up USB camera device. */
cameraCtrl = [CameraController alloc];
cameraConfigured = [cameraCtrl openUSBCamera:kVendorApple :kProductiSight];
if (cameraConfigured)
[lbl setStringValue:@"Camera connected successfully."];
else {
[lbl setStringValue:@"Camera failure."];
}
/* Initialize ranged controls. */
[self initSlider:brightnessSlider control:CamPar_Brightness];
[self initSlider:contrastSlider control:CamPar_Contrast];
[self initSlider:saturationSlider control:CamPar_Saturation];
[self initSlider:sharpnessSlider control:CamPar_Sharpness];
[self initSlider:gammaSlider control:CamPar_Gamma];
[self initExposureSlider:exposureSlider control:CamPar_ExposureAbs];
[self initWhiteBalanceTempSlider:whiteBalanceTempSlider control:CamPar_WhiteBalanceTemp];
[self initCheckbox:whiteBalanceTempAutoCheckbox control:CamPar_AutoWhiteBalanceTemp];
[self initExposureModePopup:exposureModePopup];
[lbl setStringValue:@"Initialized"];
}
- (IBAction)setBrightness:(id)sender
{
int brightness = [brightnessSlider intValue];
[cameraCtrl setValue:brightness
control:CamPar_Brightness];
}
- (IBAction)setContrast:(id)sender
{
int contrast = [contrastSlider intValue];
[cameraCtrl setValue:contrast
control:CamPar_Contrast];
}
- (IBAction)setSaturation:(id)sender
{
int saturation = [saturationSlider intValue];
[cameraCtrl setValue:saturation
control:CamPar_Saturation];
}
- (IBAction)setSharpness:(id)sender
{
int sharpness = [sharpnessSlider intValue];
[cameraCtrl setValue:sharpness
control:CamPar_Sharpness];
}
- (IBAction)setGamma:(id)sender
{
int gamma = [gammaSlider intValue];
[cameraCtrl setValue:gamma
control:CamPar_Gamma];
}
- (IBAction)setExposure:(id)sender
{
int exposure = [exposureSlider intValue];
[cameraCtrl setValue:exposure
control:CamPar_ExposureAbs];
}
- (IBAction)setExposureMode:(id)sender
{
CameraAutoExposureMode_t mode = [selectedExposureMode mode];
[cameraCtrl setValue:mode
control:CamPar_AutoExposureMode];
[self initExposureSlider:exposureSlider control:CamPar_ExposureAbs];
}
- (IBAction)setWhiteBalanceTemp:(id)sender;
{
long whiteBalance = [sender intValue];
[cameraCtrl setValue:whiteBalance
control:CamPar_WhiteBalanceTemp];
}
- (IBAction)setWhiteBalanceTempAuto:(id)sender
{
Boolean wbAuto = (whiteBalanceTempAutoCheckbox.state == NSOnState);
[cameraCtrl setValue:wbAuto
control:CamPar_AutoWhiteBalanceTemp];
[self initWhiteBalanceTempSlider:whiteBalanceTempSlider control:CamPar_WhiteBalanceTemp];
}
- (void)windowWillClose:(NSNotification *)notification
{
[captureSession stopRunning];
[[captureDeviceInput device] close];
}
- (void)dealloc
{
[captureSession release];
[captureDeviceInput release];
[super dealloc];
}
@end