cloudImageLabeler method

ImageLabeler cloudImageLabeler([
  1. CloudImageLabelerOptions? options
])

Creates a cloud instance of ImageLabeler.

Implementation

ImageLabeler cloudImageLabeler([CloudImageLabelerOptions? options]) {
  return ImageLabeler._(
    options: options ?? const CloudImageLabelerOptions(),
    modelType: ModelType.cloud,
    handle: nextHandle++,
  );
}