12345678910111213141516171819202122232425 |
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- NS_SWIFT_NAME(VisionOnDeviceImageLabelerOptions)
- @interface FIRVisionOnDeviceImageLabelerOptions : NSObject
- @property(nonatomic) float confidenceThreshold;
- - (instancetype)init NS_DESIGNATED_INITIALIZER;
- @end
- NS_ASSUME_NONNULL_END
|