2023-07-31 03:52:10 -06:00
|
|
|
//
|
|
|
|
// FrameProcessorPlugin.m
|
|
|
|
// VisionCamera
|
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 31.07.23.
|
|
|
|
// Copyright © 2023 mrousavy. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "FrameProcessorPlugin.h"
|
|
|
|
|
|
|
|
// Base implementation (empty)
|
|
|
|
@implementation FrameProcessorPlugin
|
|
|
|
|
2023-10-19 02:35:14 -06:00
|
|
|
- (instancetype)initWithOptions:(NSDictionary* _Nullable)options {
|
|
|
|
self = [super init];
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2023-07-31 03:52:10 -06:00
|
|
|
- (id _Nullable)callback:(Frame* _Nonnull)frame withArguments:(NSDictionary* _Nullable)arguments {
|
2023-09-01 11:39:25 -06:00
|
|
|
[NSException raise:NSInternalInconsistencyException
|
|
|
|
format:@"Frame Processor Plugin does not override the `callback(frame:withArguments:)` method!"];
|
2023-07-31 03:52:10 -06:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|