ClassifierOptions constructor

const ClassifierOptions({
  1. String? displayNamesLocale,
  2. int? maxResults,
  3. double? scoreThreshold,
  4. List<String>? categoryAllowlist,
  5. List<String>? categoryDenylist,
})

Dart representation of MediaPipe's "ClassifierOptions" concept.

Classifier options shared across MediaPipe classification tasks.

See also:

Implementation

const ClassifierOptions({
  this.displayNamesLocale,
  this.maxResults,
  this.scoreThreshold,
  this.categoryAllowlist,
  this.categoryDenylist,
});