MPPImageSegmenterOptions
@interface MPPImageSegmenterOptions : MPPTaskOptions <NSCopying>
Options for setting up a ImageSegmenter
.
-
Running mode of the image segmenter task. Defaults to
image
.ImageSegmenter
can be created with one of the following running modes:image
: The mode for performing segmentation on single image inputs.video
: The mode for performing segmentation on the decoded frames of a video.liveStream
: The mode for performing segmentation on a live stream of input data, such as from the camera.
Declaration
Objective-C
@property (nonatomic) MPPRunningMode runningMode;
-
An object that confirms to
ImageSegmenterLiveStreamDelegate
protocol. This object must implementimageSegmenter(_:didFinishSegmentationWithResult:timestampInMilliseconds:error:)
to receive the results of performing asynchronous segmentation on images (i.e, whenrunningMode
=liveStream
).Declaration
Objective-C
@property (nonatomic, weak, nullable) id<MPPImageSegmenterLiveStreamDelegate> imageSegmenterLiveStreamDelegate;
-
The locale to use for display names specified through the TFLite Model Metadata, if any. Defaults to English.
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull displayNamesLocale;
-
Represents whether to output confidence masks.
Declaration
Objective-C
@property (nonatomic) BOOL shouldOutputConfidenceMasks;
-
Represents whether to output category mask.
Declaration
Objective-C
@property (nonatomic) BOOL shouldOutputCategoryMask;