From 7e00a470aad563d444ff5f3554a53b8b011cd856 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Thu, 25 Apr 2024 10:54:19 +0530 Subject: [PATCH] [mob][photos] Lower both hard and soft blur thresholds --- .../face_ml/face_filtering/face_filtering_constants.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/services/machine_learning/face_ml/face_filtering/face_filtering_constants.dart b/mobile/lib/services/machine_learning/face_ml/face_filtering/face_filtering_constants.dart index 0feb275a7b..b0f954f8f9 100644 --- a/mobile/lib/services/machine_learning/face_ml/face_filtering/face_filtering_constants.dart +++ b/mobile/lib/services/machine_learning/face_ml/face_filtering/face_filtering_constants.dart @@ -1,8 +1,8 @@ import 'package:photos/services/machine_learning/face_ml/face_detection/face_detection_service.dart'; /// Blur detection threshold -const kLaplacianHardThreshold = 15; -const kLaplacianSoftThreshold = 100; +const kLaplacianHardThreshold = 10; +const kLaplacianSoftThreshold = 50; const kLaplacianVerySoftThreshold = 200; /// Default blur value