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 37617dbd54 - Show all commits

View File

@ -21,7 +21,7 @@ abstract public class Detector {
/** Triggers onDetectionListener - call this to trigger violation/alarm */
private void reportViolation(String detectorID, String detectionType, float amplitude) {
public void reportViolation(String detectorID, String detectionType, float amplitude) {
if (listener != null) {
DetectionReport detectionReport = new DetectionReport(detectorID, detectionType, amplitude);
listener.onDetection(detectionReport);