EmbedderOptions constructor

const EmbedderOptions({
  1. bool l2Normalize = false,
  2. bool quantize = false,
})

Dart representation of MediaPipe's "EmbedderOptions" concept.

Embedder options shared across MediaPipe embedding tasks.

See also:

Implementation

const EmbedderOptions({
  this.l2Normalize = false,
  this.quantize = false,
});