mirror of
https://github.com/opencv/opencv.git
synced 2024-12-17 10:58:00 +08:00
f1dcf71dd7
* Changes delegate property from assign to weak In modern Objective-C delegate should be weak. In very rare conditions you might want delegate be strong. Assign for delegate is sign of legacy code. This change prevents crash when you forget nil delegate in dealloc and makes rush with nilling delegate unnecessary. This change shouldn't break any existing code. * Adds implementation for setters and getters for weak delegate properties for non ARC Obj-C files For whatever reason compiler can't synthesize these. And yes, it's time to convert all Objective-C stuff to ARC.
173 lines
5.2 KiB
Plaintext
173 lines
5.2 KiB
Plaintext
/*
|
|
* cap_ios_photo_camera.mm
|
|
* For iOS video I/O
|
|
* by Eduard Feicho on 29/07/12
|
|
* Copyright 2012. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
|
|
#import "opencv2/videoio/cap_ios.h"
|
|
#include "precomp.hpp"
|
|
|
|
#pragma mark - Private Interface
|
|
|
|
|
|
@interface CvPhotoCamera ()
|
|
{
|
|
id<CvPhotoCameraDelegate> _delegate;
|
|
}
|
|
|
|
@property (nonatomic, strong) AVCaptureStillImageOutput* stillImageOutput;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#pragma mark - Implementation
|
|
|
|
|
|
@implementation CvPhotoCamera
|
|
|
|
|
|
|
|
#pragma mark Public
|
|
|
|
@synthesize stillImageOutput;
|
|
|
|
- (void)setDelegate:(id<CvPhotoCameraDelegate>)newDelegate {
|
|
_delegate = newDelegate;
|
|
}
|
|
|
|
- (id<CvPhotoCameraDelegate>)delegate {
|
|
return _delegate;
|
|
}
|
|
|
|
#pragma mark - Public interface
|
|
|
|
|
|
- (void)takePicture
|
|
{
|
|
if (cameraAvailable == NO) {
|
|
return;
|
|
}
|
|
cameraAvailable = NO;
|
|
|
|
|
|
[self.stillImageOutput captureStillImageAsynchronouslyFromConnection:self.videoCaptureConnection
|
|
completionHandler:
|
|
^(CMSampleBufferRef imageSampleBuffer, NSError *error)
|
|
{
|
|
if (error == nil && imageSampleBuffer != NULL)
|
|
{
|
|
// TODO check
|
|
// NSNumber* imageOrientation = [UIImage cgImageOrientationForUIDeviceOrientation:currentDeviceOrientation];
|
|
// CMSetAttachment(imageSampleBuffer, kCGImagePropertyOrientation, imageOrientation, 1);
|
|
|
|
NSData *jpegData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self.captureSession stopRunning];
|
|
|
|
// Make sure we create objects on the main thread in the main context
|
|
UIImage* newImage = [UIImage imageWithData:jpegData];
|
|
|
|
//UIImageOrientation orientation = [newImage imageOrientation];
|
|
|
|
// TODO: only apply rotation, don't scale, since we can set this directly in the camera
|
|
/*
|
|
switch (orientation) {
|
|
case UIImageOrientationUp:
|
|
case UIImageOrientationDown:
|
|
newImage = [newImage imageWithAppliedRotationAndMaxSize:CGSizeMake(640.0, 480.0)];
|
|
break;
|
|
case UIImageOrientationLeft:
|
|
case UIImageOrientationRight:
|
|
newImage = [newImage imageWithMaxSize:CGSizeMake(640.0, 480.0)];
|
|
default:
|
|
break;
|
|
}
|
|
*/
|
|
|
|
// We have captured the image, we can allow the user to take another picture
|
|
cameraAvailable = YES;
|
|
|
|
NSLog(@"CvPhotoCamera captured image");
|
|
[self.delegate photoCamera:self capturedImage:newImage];
|
|
|
|
[self.captureSession startRunning];
|
|
});
|
|
}
|
|
}];
|
|
|
|
|
|
}
|
|
|
|
- (void)stop;
|
|
{
|
|
[super stop];
|
|
self.stillImageOutput = nil;
|
|
}
|
|
|
|
|
|
#pragma mark - Private Interface
|
|
|
|
|
|
- (void)createStillImageOutput;
|
|
{
|
|
// setup still image output with jpeg codec
|
|
self.stillImageOutput = [[AVCaptureStillImageOutput alloc] init];
|
|
NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys:AVVideoCodecJPEG, AVVideoCodecKey, nil];
|
|
[self.stillImageOutput setOutputSettings:outputSettings];
|
|
[self.captureSession addOutput:self.stillImageOutput];
|
|
|
|
for (AVCaptureConnection *connection in self.stillImageOutput.connections) {
|
|
for (AVCaptureInputPort *port in [connection inputPorts]) {
|
|
if ([port.mediaType isEqual:AVMediaTypeVideo]) {
|
|
self.videoCaptureConnection = connection;
|
|
break;
|
|
}
|
|
}
|
|
if (self.videoCaptureConnection) {
|
|
break;
|
|
}
|
|
}
|
|
NSLog(@"[Camera] still image output created");
|
|
}
|
|
|
|
|
|
- (void)createCaptureOutput;
|
|
{
|
|
[self createStillImageOutput];
|
|
}
|
|
|
|
- (void)createCustomVideoPreview;
|
|
{
|
|
//do nothing, always use AVCaptureVideoPreviewLayer
|
|
}
|
|
|
|
|
|
@end
|