From b24b6a7d78c593d520aa3e980f15214b720cf1ca Mon Sep 17 00:00:00 2001 From: James Kerns Date: Thu, 24 Jan 2019 09:46:32 -0600 Subject: [PATCH] air HU threshold widened --- pylinac/ct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylinac/ct.py b/pylinac/ct.py index 13a8f73e0..90a67ffdd 100644 --- a/pylinac/ct.py +++ b/pylinac/ct.py @@ -1131,7 +1131,7 @@ def find_phantom_roll(self): """ def is_right_area(region): thresh = np.pi * ((self.air_bubble_radius_mm / self.mm_per_pixel) ** 2) - return thresh * 1.5 > region.filled_area > thresh / 1.5 + return thresh * 2 > region.filled_area > thresh / 2 def is_right_eccentricity(region): return region.eccentricity < 0.5