Added DetectionReportCalss
This commit is contained in:
parent
bef5d03494
commit
362af75b9a
@ -0,0 +1,19 @@
|
||||
package com.example.ueberwachungssystem.VideoDetection;
|
||||
|
||||
import java.util.Calendar;
|
||||
|
||||
/** Detection Report Class */
|
||||
|
||||
public class DetectionReport {
|
||||
public String timeStamp;
|
||||
public String detectionType;
|
||||
public float detectedAmplitude;
|
||||
public String detectorID;
|
||||
|
||||
public DetectionReport(String detectorID, String detectionType, float detectedAmplitude) {
|
||||
this.timeStamp = String.valueOf(Calendar.getInstance().getTime());
|
||||
this.detectionType = detectionType;
|
||||
this.detectedAmplitude = detectedAmplitude;
|
||||
this.detectorID = detectorID;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user