Fixed another bug with calculating pixels changed

This commit is contained in:
Bastian Kohler 2023-06-21 10:02:58 +02:00
parent 43eac872ed
commit 1aea88d08f

View File

@ -224,7 +224,7 @@ public class VideoDetector extends Detector {
int n = OpenCVHelper.countNonZeroPixels(processed); int n = OpenCVHelper.countNonZeroPixels(processed);
int pixelCount = image.getWidth() * image.getHeight(); int pixelCount = image.getWidth() * image.getHeight();
float percentChanged = (float) (n / pixelCount) * 100; float percentChanged = ((float) n / pixelCount) * 100;
// Violation Condition // Violation Condition
if (percentChanged> ALARM_THRESHOLD) { if (percentChanged> ALARM_THRESHOLD) {