diff --git a/src/frame_comparison/frame_change_detector.py b/src/frame_comparison/frame_change_detector.py index 8406d38..23dbefd 100644 --- a/src/frame_comparison/frame_change_detector.py +++ b/src/frame_comparison/frame_change_detector.py @@ -3,11 +3,10 @@ from numpy.typing import NDArray # configurable thresholds -MSE_THRESH = 45.0 -SSIM_THRESH = 0.992 -FLOW_THRESH = 0.7 -MIN_STATIC_FRAMES = 4 -OPTICAL_FLOW_ACTIVE_THRESH = 0.5 +MSE_THRESH = 95.0 +SSIM_THRESH = 0.93 +FLOW_THRESH = 1.0 +OPTICAL_FLOW_ACTIVE_THRESH = 0.3 class FrameChangeDetector: