ClassifierOptions constructor
const
ClassifierOptions({})
Dart representation of MediaPipe's "ClassifierOptions" concept.
Classifier options shared across MediaPipe classification tasks.
See also:
- MediaPipe's ClassifierOptions documentation
- BaseOptions, which is often used in conjunction to specify a classifier's desired behavior.
Implementation
const ClassifierOptions({
String? displayNamesLocale,
int? maxResults,
double? scoreThreshold,
List<String>? categoryAllowlist,
List<String>? categoryDenylist,
});