From: Lukáš Jiřiště Date: Tue, 20 Aug 2024 12:25:52 +0000 (+0200) Subject: Change the image shown after mask acquisition X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=4cc0ecfb93f4640adb0945a03534fe5c57f30371;p=Bubble_column.git 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. --- 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));