From 4cc0ecfb93f4640adb0945a03534fe5c57f30371 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Luk=C3=A1=C5=A1=20Ji=C5=99i=C5=A1t=C4=9B?= Date: Tue, 20 Aug 2024 14:25:52 +0200 Subject: [PATCH] Change the image shown after mask acquisition It was meant to be this kind of image instead of the instensity plot in the previous commit. --- Bubliny.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bubliny.m b/Bubliny.m index 29a0460..22a243e 100755 --- a/Bubliny.m +++ b/Bubliny.m @@ -95,9 +95,9 @@ for iii=1:nSelectedDirectory % Cycles for directories with files %} mask = get_mask(changefig, meanfig); - figure - plot(mean(double(meanfig), Weights = mask)); - + figure(); + imshow(meanfig .* uint8(mask)); + meter = get_meter(maxfig, mask); [~, calm_level] = min(mean(double(meanfig), Weights = mask)); -- 2.30.2