Skip to content

Instantly share code, notes, and snippets.

@xellDart
Created August 16, 2020 21:11
Show Gist options
  • Save xellDart/6502b40c25a32479f6e011b5fe20388c to your computer and use it in GitHub Desktop.
Save xellDart/6502b40c25a32479f6e011b5fe20388c to your computer and use it in GitHub Desktop.
class Detection {
final double score;
final int classID;
final double xMin;
final double yMin;
final double width;
final double height;
Detection(
this.score, this.classID, this.xMin, this.yMin, this.width, this.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment