Created
August 16, 2020 21:11
-
-
Save xellDart/6502b40c25a32479f6e011b5fe20388c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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