flutter_d2go 0.3.0 copy "flutter_d2go: ^0.3.0" to clipboard
flutter_d2go: ^0.3.0 copied to clipboard

outdated

Flutter Plugin inferring using d2go, the mobile model of detectron2.

pub package

flutter_d2go #

Flutter Plugin inferring using d2go, the mobile model of detectron2. Currently only Android works.

Features #

  • Providing class and boundary value box by object detection
  • Providing mask data by instance segmentation
  • Providing keypoints by keypoint estimation

Preview #

  • Object detection and instance segmentation

  • Keypoints estimation

Installation #

Add flutter_d2go to your pubspec.yaml.

Put the d2go model and class file in the assets directory.

assets:
  - assets/models/d2go.pt
  - assets/models/classes.txt

Usage #

1. Load model and classes #

The model is in Pytorch format.
The format of classes file is here.

await FlutterD2go.loadModel(
    modelPath: 'assets/models/d2go.pt',     // required
    labelPath: 'assets/models/classes.txt', // required
);

2. Get predictions #

List<Map<String, dynamic>> predictions = await FlutterD2go.getImagePrediction(
    image: image,           // required File(dart:io) image
    width: 320,             // defaults to 640
    height: 320,            // defaults to 640
    mean: [0.0, 0.0, 0.0],  // defaults to [0.0, 0.0, 0.0]
    std: [1.0, 1.0, 1.0],   // defaults to [1.0, 1.0, 1.0]
    minScore: 0.7,          // defaults to 0.5
);

Output format

rect is the scale of the original image.
mask and keypoints depend on whether the d2go model has mask and keypoints.

mask will be a Uint8List of bitmap images.
keypoints will be a list of 17 (x, y).

[
  {
    "rect": {
      "left": 74.65713500976562,
      "top": 76.94147491455078,
      "right": 350.64324951171875,
      "bottom": 323.0279846191406
    },
    "mask": [66, 77, 122, 0, 0, 0, 0, 0, 0, 0, 122, ...],
    "keypoints": [[117.14504, 77.277405], [122.74037, 73.53044], [105.95437, 73.53044], ...],
    "confidenceInClass": 0.985002338886261,
    "detectedClass": "bicycle"
  }, // For each instance
...
]
7
likes
0
pub points
49%
popularity

Publisher

unverified uploader

Flutter Plugin inferring using d2go, the mobile model of detectron2.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path, path_provider

More

Packages that depend on flutter_d2go