44ed42d5d6
* feat: Replace `FrameProcessorRuntimeManager` with `VisionCameraProxy` (iOS) * Make `FrameProcessorPlugin` a constructable HostObject * fix: Fix `name` override * Simplify `useFrameProcessor * fix: Fix lint errors * Remove FrameProcessorPlugin::name * JSIUtils -> JSINSObjectConversion
23 lines
429 B
Objective-C
23 lines
429 B
Objective-C
//
|
|
// CameraBridge.h
|
|
// mrousavy
|
|
//
|
|
// Created by Marc Rousavy on 09.11.20.
|
|
// Copyright © 2020 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <React/RCTViewManager.h>
|
|
#import <React/RCTUIManager.h>
|
|
#import <React/RCTFPSGraph.h>
|
|
#import <React/RCTLog.h>
|
|
|
|
#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS
|
|
#import "FrameProcessor.h"
|
|
#import "Frame.h"
|
|
#import "VisionCameraProxy.h"
|
|
#endif
|