CVModelConfig constructor

CVModelConfig({
  1. required CVCapability capabilities,
  2. String? detModelPath,
  3. String? recModelPath,
  4. String? charDictPath,
  5. String? qnnModelFolderPath,
  6. String? qnnLibFolderPath,
})

Implementation

CVModelConfig({
  required this.capabilities,
  this.detModelPath,
  this.recModelPath,
  this.charDictPath,
  this.qnnModelFolderPath,
  this.qnnLibFolderPath,
});