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({
  String? displayNamesLocale,
  int? maxResults,
  double? scoreThreshold,
  List<String>? categoryAllowlist,
  List<String>? categoryDenylist,
});