runPoseNetOnBinary static method

Future<List?> runPoseNetOnBinary({
  1. required Uint8List binary,
  2. int numResults = 5,
  3. double threshold = 0.5,
  4. int nmsRadius = 20,
  5. bool asynch = true,
})

Implementation

static Future<List?> runPoseNetOnBinary(
    {required Uint8List binary,
    int numResults = 5,
    double threshold = 0.5,
    int nmsRadius = 20,
    bool asynch = true}) async {
  return await _channel.invokeMethod(
    'runPoseNetOnBinary',
    {
      "binary": binary,
      "numResults": numResults,
      "threshold": threshold,
      "nmsRadius": nmsRadius,
      "asynch": asynch,
    },
  );
}