Skip to content

Instantly share code, notes, and snippets.

@tanjinprity4
Last active August 5, 2019 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanjinprity4/68881adb96c785575fb87e9c4b247914 to your computer and use it in GitHub Desktop.
Save tanjinprity4/68881adb96c785575fb87e9c4b247914 to your computer and use it in GitHub Desktop.
Person class
// Person class holds a list of key points and an associated confidence score.
class Person {
var keyPoints: List<KeyPoint> = listOf<KeyPoint>()
var score: Float = 0.0f
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment