From c62826c8b8a26e0d8873faf34a190a940fdf86ce Mon Sep 17 00:00:00 2001 From: tyrin Date: Thu, 5 Jun 2025 13:18:03 +0300 Subject: [PATCH] reverted excluding contaminated pixels from the source region --- views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views.py b/views.py index 78f1f22..54a1ac3 100644 --- a/views.py +++ b/views.py @@ -231,7 +231,7 @@ class UpperLimitView(APIView): # exclude contaminated pixels from the background and source regions annulus_pixels = annulus_pixels.exclude(contaminated=True) - source_pixels = source_pixels.exclude(contaminated=True) + # source_pixels = source_pixels.exclude(contaminated=True) status_int = 0 error_message = ""