You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
603 B
23 lines
603 B
//
|
|
// SCManagedCapturerARImageCaptureProvider.h
|
|
// SCCamera
|
|
//
|
|
// Created by Michel Loenngren on 4/11/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCManagedStillImageCapturer;
|
|
@protocol SCManagedCapturerLensAPI
|
|
, SCPerforming;
|
|
|
|
/**
|
|
Bridging protocol providing the ARImageCapturer subclass of SCManagedStillImageCapturer
|
|
to capture core.
|
|
*/
|
|
@protocol SCManagedCapturerARImageCaptureProvider <NSObject>
|
|
|
|
- (SCManagedStillImageCapturer *)arImageCapturerWith:(id<SCPerforming>)performer
|
|
lensProcessingCore:(id<SCManagedCapturerLensAPI>)lensProcessingCore;
|
|
|
|
@end
|