-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCameraScrollView.m
More file actions
453 lines (362 loc) · 14.9 KB
/
CameraScrollView.m
File metadata and controls
453 lines (362 loc) · 14.9 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
//
// CameraScrollView.m
// CellScope
//
// Created by Frankie Myers on 11/7/13.
// Copyright (c) 2013 UC Berkeley Fletcher Lab. All rights reserved.
//
#import "CameraScrollView.h"
@implementation CameraScrollView
static const NSString *ItemStatusContext;
@synthesize session,device,input,stillOutput;
@synthesize previewLayerView,scrollBarView;
@synthesize previewRunning,isFocusLocked,isExposureLocked,isRecording,isPlaying,doPlaybackLoop;
@synthesize lastCapturedImage;
- (id)init
{
self = [super init];
if (self) {
// Initialization code
[self setBouncesZoom:NO];
[self setBounces:NO];
[self setScrollEnabled:YES];
[self setMaximumZoomScale:10.0];
[self setShowsHorizontalScrollIndicator:YES];
[self setShowsVerticalScrollIndicator:YES];
[self setIndicatorStyle:UIScrollViewIndicatorStyleWhite];
[self setIsRecording:NO];
[self setExposureLock:NO];
[self setFocusLock:NO];
[self setPreviewRunning:NO];
[self setDoPlaybackLoop:NO];
[self setCaptureMode:CSCaptureModePhoto];
}
return self;
}
- (void) setupCameraWithMode:(CSCaptureMode)mode
Orientation:(AVCaptureVideoOrientation)orientation
transform:(CGAffineTransform)transform
{
if (previewLayerView!=nil)
[previewLayerView removeFromSuperview];
self.captureMode = mode;
self.orientation = orientation;
self.transform = transform;
// Setup the AV foundation capture session
self.session = [[AVCaptureSession alloc] init];
if (self.captureMode==CSCaptureModePhoto)
self.session.sessionPreset = AVCaptureSessionPresetPhoto;
else if (self.captureMode==CSCaptureModeVideo)
self.session.sessionPreset = AVCaptureSessionPresetHigh;
self.device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
self.input = [AVCaptureDeviceInput deviceInputWithDevice:self.device error:nil];
// Setup image preview layer (subview within this scrollview)
CGRect frame = CGRectMake(0, 0, 2592, 1936); //TODO: grab the resolution from the camera?
previewLayerView = [[UIView alloc] initWithFrame:frame];
CALayer *viewLayer = previewLayerView.layer;
AVCaptureVideoPreviewLayer *captureVideoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession: self.session];
captureVideoPreviewLayer.frame = viewLayer.bounds;
[viewLayer addSublayer:captureVideoPreviewLayer];
[self addSubview:previewLayerView];
[self sendSubviewToBack:previewLayerView];
[self setContentSize:frame.size];
//this is a kludge...will revise this
if (orientation==AVCaptureVideoOrientationPortrait || orientation==AVCaptureVideoOrientationPortraitUpsideDown)
[self setContentOffset:CGPointMake(750,550) animated:NO];
//handles zoom events
[self setDelegate:self];
//apply transform
[self setTransform:transform];
// Setup still image output
if (self.captureMode==CSCaptureModePhoto)
{
self.stillOutput = [[AVCaptureStillImageOutput alloc] init];
NSDictionary *outputSettings = [[NSDictionary alloc] initWithObjectsAndKeys: AVVideoCodecJPEG, AVVideoCodecKey, nil];
[self.stillOutput setOutputSettings:outputSettings];
// Add session input and output
[self.session addInput:self.input];
[self.session addOutput:self.stillOutput];
}
else if (self.captureMode==CSCaptureModeVideo)
{
// Setup output
self.movieOutput = [[AVCaptureMovieFileOutput alloc] init];
// Add session input and output
[self.session addInput:self.input];
[self.session addOutput:self.movieOutput];
}
[self setExposureLock:isExposureLocked];
[self setFocusLock:isFocusLocked];
[self startPreview];
//handle orientation and mirroring
AVCaptureConnection* previewLayerConnection = captureVideoPreviewLayer.connection;
if ([previewLayerConnection isVideoOrientationSupported])
{
[previewLayerConnection setVideoOrientation:orientation];
}
[self setZoomScale:self.minimumZoomScale animated:NO];
//TODO: are these necessary?
[previewLayerView setNeedsDisplay];
[self setNeedsDisplay];
}
//not currently using this
- (void) zoomExtentsWithAnimation:(BOOL)animated
{
float horizZoom = self.bounds.size.width / previewLayerView.bounds.size.width;
float vertZoom = self.bounds.size.height / previewLayerView.bounds.size.height;
float zoomFactor = MIN(horizZoom,vertZoom)*1.005;
[self setMinimumZoomScale:zoomFactor];
[self setZoomScale:zoomFactor animated:animated];
}
//might remove these...unless we do something with freeze/thaw buttons
- (void) startPreview
{
[self.session startRunning];
previewRunning = YES;
}
- (void) stopPreview
{
[self.session stopRunning];
previewRunning = NO;
}
- (void) grabImage
{
if (self.captureMode!=CSCaptureModePhoto)
{
NSLog(@"Must be in photo mode to grab image");
return;
}
//TODO: rather than using notifications, use a block here, which returns the UIImage and Exif data
//necessary to loop like this? seems kludgy
AVCaptureConnection *videoConnection = nil;
for (AVCaptureConnection *connection in stillOutput.connections)
{
for (AVCaptureInputPort *port in [connection inputPorts])
{
if ([[port mediaType] isEqual:AVMediaTypeVideo] )
{
videoConnection = connection;
break;
}
}
if (videoConnection) { break; }
}
self.lastCapturedImage = nil;
self.lastImageMetadata = nil;
[videoConnection setVideoOrientation:self.orientation]; //should do this during setupCamera instead
NSLog(@"about to request a capture from: %@", stillOutput);
[stillOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler: ^(CMSampleBufferRef imageSampleBuffer, NSError *error)
{
if (imageSampleBuffer==nil)
{
NSLog(@"error with capture: %@",[error description]);
}
else
{
// initialize the metadata with the exifattachments provided by the camera
self.lastImageMetadata = [[NSMutableDictionary alloc] initWithImageSampleBuffer:imageSampleBuffer];
NSLog(@"metadata: %@", self.lastImageMetadata);
//grab the image data and create a UIImage object
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
//self.lastCapturedImage = [[[UIImage alloc] initWithData:imageData] applyRotation:M_PI_2];
self.lastCapturedImage = [[UIImage alloc] initWithData:imageData];
[[NSNotificationCenter defaultCenter] postNotificationName:@"ImageCaptured" object:nil];
}
}];
}
- (void) startVideoRecording
{
NSLog(@"starting video");
//Create temporary URL to record to
NSString *outputPath = [[NSString alloc] initWithFormat:@"%@%@", NSTemporaryDirectory(), @"output.mov"];
NSURL *outputURL = [[NSURL alloc] initFileURLWithPath:outputPath];
NSFileManager *fileManager = [NSFileManager defaultManager];
if ([fileManager fileExistsAtPath:outputPath])
{
NSError *error;
// Remove the old temporary movie
if ([fileManager removeItemAtPath:outputPath error:&error] == NO)
{
NSLog(@"error removing old temp file");
return;
}
}
self.isRecording = YES;
//start recording to temp file
[self.movieOutput startRecordingToOutputFileURL:outputURL recordingDelegate:self];
}
- (void) stopVideoRecording
{
if (self.isRecording)
{
NSLog(@"video stopped");
[self.movieOutput stopRecording];
self.isRecording = NO;
}
}
//this delegate gets called when video recording is complete
//should switch this to a notification, just as image is done, and use lastcapturedvideoURL
- (void)captureOutput:(AVCaptureFileOutput *)captureOutput
didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL
fromConnections:(NSArray *)connections
error:(NSError *)error
{
self.lastCapturedVideoURL = outputFileURL;
self.lastImageMetadata = [[NSMutableDictionary alloc] init];
self.lastCapturedImage = [[UIImage alloc] init]; //snapshot of first frame;
NSLog(@"%@",[self.movieOutput.metadata description]); //what's in here? can we put it in metadata
[[NSNotificationCenter defaultCenter] postNotificationName:@"VideoCaptured" object:nil];
}
- (void) showImage:(UIImage*)image
{
CGRect frame = CGRectMake(0, 0, 2592, 1936);
UIImageView* imageView = [[UIImageView alloc] initWithFrame:frame];
[imageView setImage:image];
previewLayerView = imageView;
[self addSubview:previewLayerView];
[self setDelegate:self];
[self setContentSize:frame.size];
}
- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView
{
return previewLayerView;
}
- (void)setExposureLock:(BOOL)locked
{
NSError* error;
if ([self.device lockForConfiguration:&error])
{
if (locked)
[self.device setExposureMode:AVCaptureExposureModeLocked];
else
[self.device setExposureMode:AVCaptureExposureModeContinuousAutoExposure];
isExposureLocked = locked;
[self.device unlockForConfiguration];
}
else
NSLog(@"Error: %@",error);
}
- (void)setFocusLock:(BOOL)locked
{
NSError* error;
if ([self.device lockForConfiguration:&error])
{
if (locked)
[self.device setFocusMode:AVCaptureFocusModeLocked];
else
[self.device setFocusMode:AVCaptureFocusModeContinuousAutoFocus];
isFocusLocked = locked;
[self.device unlockForConfiguration];
}
else
NSLog(@"Error: %@",error);
}
- (void) addScaleBarWithLocation:(CGPoint)location
minLength:(float)minLength
maxLength:(float)maxLength
pixelsPerMM:(float)pixelsPerMM
snapLengthsInMM:(NSArray*)snaps
color:(UIColor*)color
lineWidth:(float)lineWidth
fontSize:(float)fontSize
showMicrons:(BOOL)showMicrons
{
ScrollBarView* sbv = [[ScrollBarView alloc] initWithFrame:CGRectMake(location.x,location.y,maxLength,((lineWidth*4)+fontSize))];
sbv.minLength = minLength;
sbv.maxLength = maxLength;
sbv.lineWidth = lineWidth;
sbv.fontSize = fontSize;
sbv.snaps = snaps;
sbv.showMicrons = showMicrons;
sbv.pixelsPerMM = pixelsPerMM;
sbv.currentZoomFactor = self.zoomScale;
sbv.backgroundColor = [UIColor clearColor];
[self.superview addSubview:sbv];
[self.superview bringSubviewToFront:sbv];
self.scrollBarView = sbv;
}
- (void)scrollViewDidZoom:(UIScrollView *)scrollView
{
NSLog(@"zoom factor: %f, content offset x: %f, content offset y: %f",self.zoomScale,self.contentOffset.x,self.contentOffset.y);
if (self.scrollBarView!=nil)
{
self.scrollBarView.currentZoomFactor = self.zoomScale;
[self.scrollBarView setNeedsDisplay];
}
}
- (void)loadVideoFromFile:(NSURL*)fileURL
completionAction:(VideoLoadCompletionBlock)completionBlock;
{
self.videoCompletionBlock = completionBlock;
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:fileURL options:nil];
NSString *tracksKey = @"tracks";
[asset loadValuesAsynchronouslyForKeys:@[tracksKey] completionHandler:
^{
// Completion handler block.
dispatch_async(dispatch_get_main_queue(),
^{
NSLog(@"finished loading video");
NSError *error;
AVKeyValueStatus status = [asset statusOfValueForKey:tracksKey error:&error];
if (status == AVKeyValueStatusLoaded) {
self.playerItem = [AVPlayerItem playerItemWithAsset:asset];
[self.playerItem addObserver:self forKeyPath:@"status"
options:0 context:&ItemStatusContext];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemDidReachEnd:)
name:AVPlayerItemDidPlayToEndTimeNotification
object:self.playerItem];
self.player = [AVPlayer playerWithPlayerItem:self.playerItem];
CGRect frame = CGRectMake(0, 0, 2592, 1936);
MoviePlayerView* playerView = [[MoviePlayerView alloc] initWithFrame:frame];
[playerView setPlayer:self.player];
self.previewLayerView = playerView;
[self addSubview:playerView];
[self setDelegate:self];
[self setContentSize:frame.size];
}
else {
// You should deal with the error appropriately.
NSLog(@"The asset's tracks were not loaded:\n%@", [error localizedDescription]);
}
});
}];
}
//necessary?
- (void)playVideo
{
[self.player play];
self.isPlaying = YES;
}
- (void)pauseVideo
{
[self.player pause];
self.isPlaying = NO;
}
- (void)seekToTime:(CMTime)time
{
[self.player seekToTime:time];
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
change:(NSDictionary *)change context:(void *)context {
if (context == &ItemStatusContext) {
dispatch_async(dispatch_get_main_queue(),
^{
self.videoCompletionBlock();
NSLog(@"player update");
});
return;
}
[super observeValueForKeyPath:keyPath ofObject:object
change:change context:context];
return;
}
- (void)playerItemDidReachEnd:(NSNotification *)notification
{
[self.player seekToTime:kCMTimeZero];
if (self.doPlaybackLoop)
[self.player play];
else
self.isPlaying = NO;
}
@end