|
|
@@ -25,6 +25,7 @@ import java.util.concurrent.ExecutionException; |
|
|
|
|
|
|
|
@ExperimentalGetImage |
|
|
|
public class VideoDetector { |
|
|
|
|
|
|
|
// Calling Activity |
|
|
|
private final Context context; |
|
|
|
// Camera Provider |
|
|
@@ -41,20 +42,23 @@ public class VideoDetector { |
|
|
|
|
|
|
|
|
|
|
|
/** Constructor */ |
|
|
|
public VideoDetector(Context context) { this.context = context; } |
|
|
|
public VideoDetector(Context context) { |
|
|
|
this.context = context; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** On Detection Listener - runs when a violation is reported */ |
|
|
|
public interface OnDetectionListener { |
|
|
|
public void onDetection(DetectionReport detectionReport); |
|
|
|
void onDetection(DetectionReport detectionReport); |
|
|
|
} |
|
|
|
public void setOnDetectionListener(OnDetectionListener listener) { |
|
|
|
this.listener = listener; |
|
|
|
} |
|
|
|
public void reportViolation(float amplitude) { |
|
|
|
DetectionReport detectionReport = new DetectionReport("123", "Video", amplitude); |
|
|
|
if (listener != null) |
|
|
|
if (listener != null) { |
|
|
|
DetectionReport detectionReport = new DetectionReport("123", "Video", amplitude); |
|
|
|
listener.onDetection(detectionReport); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@@ -66,7 +70,8 @@ public class VideoDetector { |
|
|
|
|
|
|
|
/** Starts Video Detection */ |
|
|
|
public void startDetection() { |
|
|
|
isDetectionRunning = true; |
|
|
|
if (isDetectionRunning) |
|
|
|
return; |
|
|
|
// Request Camera Provider |
|
|
|
final ListenableFuture<ProcessCameraProvider> cameraProviderFuture = ProcessCameraProvider.getInstance(context); |
|
|
|
//Check for Camera availability |
|
|
@@ -76,6 +81,7 @@ public class VideoDetector { |
|
|
|
try { |
|
|
|
cameraProvider = cameraProviderFuture.get(); |
|
|
|
bindLuminosityAnalysis(cameraProvider); |
|
|
|
isDetectionRunning = true; |
|
|
|
} catch (ExecutionException | InterruptedException e) { |
|
|
|
// No errors need to be handled for this Future. This should never be reached. |
|
|
|
} |
|
|
@@ -86,6 +92,8 @@ public class VideoDetector { |
|
|
|
|
|
|
|
/** Stops Video Detection */ |
|
|
|
public void stopDetection() { |
|
|
|
if (!isDetectionRunning) |
|
|
|
return; |
|
|
|
cameraProvider.unbindAll(); |
|
|
|
isDetectionRunning = false; |
|
|
|
} |