Created
June 30, 2023 02:19
-
-
Save tanner-west/4b585356b7ccf1858d312db0b7132da7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// RCTVisionModule.m | |
// VisionNativeModulePOC | |
// | |
// Created by Tanner West on 6/2/23. | |
// | |
#import <Foundation/Foundation.h> | |
#import <React/RCTBridgeModule.h> | |
@interface RCT_EXTERN_MODULE(RCTVisionModule, NSObject) | |
RCT_EXTERN_METHOD(detectText: (NSString *)imageUrl callback: (RCTResponseSenderBlock)callback); | |
RCT_EXTERN_METHOD(detectFaces: (NSString *)imageUrl callback: (RCTResponseSenderBlock)callback); | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment