21 lines
538 B
Objective-C
21 lines
538 B
Objective-C
//
|
|
// 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
|
|
|
|
- (id _Nullable)callback:(Frame* _Nonnull)frame withArguments:(NSDictionary* _Nullable)arguments {
|
|
[NSException raise:NSInternalInconsistencyException
|
|
format:@"Frame Processor Plugin does not override the `callback(frame:withArguments:)` method!"];
|
|
return nil;
|
|
}
|
|
|
|
@end
|