loadModelFromFile method

Future<bool> loadModelFromFile({
  1. required String paramPath,
  2. required String binPath,
  3. int numClass = 1,
  4. int sizeId = 0,
  5. int cpuGpu = 0,
})

Load a PicoDet model from absolute file paths (e.g., user-picked files).

Implementation

Future<bool> loadModelFromFile({
  required String paramPath,
  required String binPath,
  int numClass = 1,
  int sizeId = 0,
  int cpuGpu = 0,
}) {
  throw UnimplementedError('loadModelFromFile() has not been implemented.');
}