bk_video #4

Manually merged
kohlerba68671 merged 30 commits from bk_video into master 2023-06-02 15:51:57 +00:00
Showing only changes of commit d04d166e14 - Show all commits

View File

@ -1,19 +1,31 @@
package com.example.ueberwachungssystem.VideoDetection;
import android.util.Log;
import java.util.Calendar;
/** Detection Report Class */
public class DetectionReport {
public String timeStamp;
public String detectionType;
public float detectedAmplitude;
public float detectedValue;
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.detectedValue = detectedAmplitude;
this.detectorID = detectorID;
}
/** Debug Report */
public void log(String tag) {
String time = "Time: [" + this.timeStamp + "]";
String type = "Type: [" + this.detectionType + "]";
String value = "Value: [" + this.detectedValue + "]";
String id = "ID: [" + this.detectorID + "]";
String message = String.join("\t", time, type, value, id);
Log.d(tag, message);
}
}