BowlerKernel
UniquePerson.java
Go to the documentation of this file.
1 package com.neuronrobotics.bowlerkernel.djl;
2 
3 import java.util.ArrayList;
4 
5 public class UniquePerson {
6  public long UUID=1;
7  public String name="";
8  public ArrayList<float[]> features=new ArrayList<float[]>();
9  public String referenceImageLocation;
10  public long timesSeen = 1;
11  public long time=System.currentTimeMillis();
12  double confidenceTarget = UniquePersonFactory.getConfidence();
13 }