-
Notifications
You must be signed in to change notification settings - Fork 17
/
CameraViewController.m
335 lines (272 loc) · 10.5 KB
/
CameraViewController.m
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
/*
* Real time image processing framework for iOS
* CameraViewController.m
*
* Copyright (c) Yuichi YOSHIDA, 11/04/20
* All rights reserved.
*
* BSD License
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
* - Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materia
* ls provided with the distribution.
* - Neither the name of the "Yuichi Yoshida" nor the names of its contributors may be u
* sed to endorse or promote products derived from this software without specific prior
* written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY E
* XPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES O
* F MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SH
* ALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENT
* AL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROC
* UREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS I
* NTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRI
* CT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF T
* HE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "CameraViewController.h"
#define _FPS_INTERVAL 2
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
static struct timeval _start, _end;
void _tic() {
gettimeofday(&_start, NULL);
}
double _toc() {
gettimeofday(&_end, NULL);
long int e_sec = _end.tv_sec * 1000000 + _end.tv_usec;
long int s_sec = _start.tv_sec * 1000000 + _start.tv_usec;
return (double)((e_sec - s_sec) / 1000.0);
}
double _tocp() {
gettimeofday(&_end, NULL);
long int e_sec = _end.tv_sec * 1000000 + _end.tv_usec;
long int s_sec = _start.tv_sec * 1000000 + _start.tv_usec;
double t = (double)((e_sec - s_sec) / 1000.0);
printf("%6.3f\n", t);
return t;
}
@implementation CameraViewController
@synthesize delegate, bufferSize;
#pragma mark - Instance method
- (void)startToMeasureFPS {
fpsTimer = [NSTimer scheduledTimerWithTimeInterval:_FPS_INTERVAL target:self selector:@selector(updateFPS:) userInfo:nil repeats:YES];
}
- (void)updateFPS:(NSTimer*)timer {
struct timeval fpsTime;
gettimeofday(&fpsTime, NULL);
long int sec = fpsTime.tv_sec * 1000000 + fpsTime.tv_usec;
double t = (double)((sec) / 1000.0);
printf("%3.1f FPS\n", (float)frameCounter/(t - fpsTimeStamp)*1000);
frameCounter = 0;
fpsTimeStamp = t;
}
- (void)prepareWithCameraViewControllerType:(CameraViewControllerType)value {
//
type = value;
NSString *sessionPreset = nil;
int pixelFormat = 0;
// decide camera type
switch (type & BufferSizeMask) {
case BufferSize1280x720:
sessionPreset = AVCaptureSessionPreset1280x720;
bufferSize = CGSizeMake(1280, 720);
break;
case BufferSize640x480:
sessionPreset = AVCaptureSessionPreset640x480;
bufferSize = CGSizeMake(640, 480);
break;
case BufferSize480x360:
sessionPreset = AVCaptureSessionPresetMedium;
bufferSize = CGSizeMake(480, 360);
break;
case BufferSize192x144:
sessionPreset = AVCaptureSessionPresetLow;
bufferSize = CGSizeMake(192, 144);
break;
default:
sessionPreset = AVCaptureSessionPreset640x480;
break;
}
// decide camera pixel type
switch (type & BufferTypeMask) {
case BufferGrayColor:
pixelFormat = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange;
break;
case BufferRGBColor:
pixelFormat = kCVPixelFormatType_32BGRA;
break;
default:
pixelFormat = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange;
break;
}
// set background color
[self.view setBackgroundColor:[UIColor blackColor]];
NSError *error = nil;
// make capture session
session = [[AVCaptureSession alloc] init];
// get default video device
AVCaptureDevice * videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
// setup video input
AVCaptureDeviceInput *videoInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:&error];
// setup video output
NSDictionary *settingInfo = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:pixelFormat] forKey:(id)kCVPixelBufferPixelFormatTypeKey];
AVCaptureVideoDataOutput * videoDataOutput = [[[AVCaptureVideoDataOutput alloc] init] autorelease];
[videoDataOutput setAlwaysDiscardsLateVideoFrames:YES];
[videoDataOutput setVideoSettings:settingInfo];
// support multi-threading
if ((type & MultiThreadingMask) == SupportMultiThreading) {
dispatch_queue_t queue = dispatch_queue_create("captureQueue", NULL);
[videoDataOutput setSampleBufferDelegate:self queue:queue];
dispatch_release(queue);
}
else {
[videoDataOutput setSampleBufferDelegate:self queue:dispatch_get_main_queue()];
}
// attach video to session
[session beginConfiguration];
[session addInput:videoInput];
[session addOutput:videoDataOutput];
[session setSessionPreset:sessionPreset];
[session commitConfiguration];
if ([session.sessionPreset isEqualToString:AVCaptureSessionPreset1280x720]) {
aspectRatio = 16.0 / 9.0;
}
else {
aspectRatio = 4.0 / 3.0;
}
// setting preview layer
previewView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1024, 1024)];
[previewView setAutoresizingMask:UIViewAutoresizingNone];
previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:session];
}
- (id)initWithCameraViewControllerType:(CameraViewControllerType)value {
self = [super initWithNibName:nil bundle:nil];
if (self) {
// Custom initialization
[self prepareWithCameraViewControllerType:value];
}
return self;
}
- (void)adjustCameraPreviewLayerOrientaion:(UIInterfaceOrientation)orientation {
switch(orientation) {
case UIInterfaceOrientationLandscapeLeft:
previewView.transform = CGAffineTransformMakeRotation(M_PI_2);
break;
case UIInterfaceOrientationLandscapeRight:
previewView.transform = CGAffineTransformMakeRotation(M_PI_2);
break;
case UIInterfaceOrientationPortrait:
previewView.transform = CGAffineTransformMakeRotation(0);
break;
case UIInterfaceOrientationPortraitUpsideDown:
previewView.transform = CGAffineTransformMakeRotation(0);
break;
default:
break;
}
}
- (void)waitForSessionStopRunning {
// this is magical code
// if you want to remove session object and preview layer, you have to wait some minitunes like following code.
// maybe, this is bug.
while ([session isRunning]) {
NSLog(@"waiting...");
[session stopRunning];
[NSThread sleepForTimeInterval:0.1];
}
[previewLayer removeFromSuperlayer];
}
#pragma mark - Override
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
[self prepareWithCameraViewControllerType:BufferGrayColor|BufferSize640x480];
}
return self;
}
- (id)initWithCoder:(NSCoder *)coder {
self = [super initWithCoder:coder];
if (self) {
[self prepareWithCameraViewControllerType:BufferGrayColor|BufferSize640x480];
}
return self;
}
#pragma mark - View lifecycle
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
float width = self.view.frame.size.width;
float height = self.view.frame.size.width * aspectRatio;
previewLayer.frame = CGRectMake(0, 0, width, height);
[previewView.layer addSublayer:previewLayer];
[self.view addSubview:previewView];
[session startRunning];
[self adjustCameraPreviewLayerOrientaion:self.interfaceOrientation];
canRotate = NO;
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[self waitForSessionStopRunning];
[fpsTimer invalidate];
}
#pragma mark - To support orientaion
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[self adjustCameraPreviewLayerOrientaion:toInterfaceOrientation];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// I can't understand the orienation behavior of view controllers.....
// Recommend that you don't overide this method... or please help me.
if (canRotate)
return YES;
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
#pragma mark - AVCaptureVideoDataOutputSampleBufferDelegate
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
frameCounter++;
NSAutoreleasePool *pool = nil;
if (![NSThread isMainThread])
pool = [NSAutoreleasePool new];
CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
if ([session isRunning]) {
if ((type & BufferTypeMask) == BufferGrayColor) {
size_t width= CVPixelBufferGetWidth(imageBuffer);
size_t height = CVPixelBufferGetHeight(imageBuffer);
CVPixelBufferLockBaseAddress(imageBuffer, 0);
CVPlanarPixelBufferInfo_YCbCrBiPlanar *planar = CVPixelBufferGetBaseAddress(imageBuffer);
size_t offset = NSSwapBigLongToHost(planar->componentInfoY.offset);
unsigned char* baseAddress = (unsigned char *)CVPixelBufferGetBaseAddress(imageBuffer);
unsigned char* pixelAddress = baseAddress + offset;
if (buffer == NULL)
buffer = (unsigned char*)malloc(sizeof(unsigned char) * width * height);
memcpy(buffer, pixelAddress, sizeof(unsigned char) * width * height);
CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
}
else if ((type & BufferTypeMask) == BufferRGBColor) {
size_t width = CVPixelBufferGetWidth(imageBuffer);
size_t height = CVPixelBufferGetHeight(imageBuffer);
CVPixelBufferLockBaseAddress(imageBuffer, 0);
unsigned char* baseAddress = (unsigned char *)CVPixelBufferGetBaseAddress(imageBuffer);
if (buffer == NULL)
buffer = (unsigned char*)malloc(sizeof(unsigned char) * width * height * 4);
memcpy(buffer, baseAddress, sizeof(unsigned char) * width * height * 4);
CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
}
if ([delegate respondsToSelector:@selector(didUpdateBufferCameraViewController:)])
[delegate didUpdateBufferCameraViewController:self];
}
if (![NSThread isMainThread])
[pool release];
}
#pragma mark - dealloc
- (void)dealloc {
free(buffer);
[session release];
[previewView release];
[super dealloc];
}
@end