From cb99858cf7d63c360fe6441eb27621e95e00a7f8 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Fri, 13 Jan 2023 09:35:09 +0000 Subject: [PATCH] cc --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index b302245..841fbe0 100644 --- a/Program.cs +++ b/Program.cs @@ -87,14 +87,14 @@ namespace Cupola previous.ToBitmap().Save(name + i.ToString() + ".png"); - + Task blend = FloatImage.Blend(new FloatImage[] { previous, new FloatImage(images[i]) }, true); Task height = FloatImage.Highest(new FloatImage[] { brightest, new FloatImage(images[i]) }); FloatImage blendImage = await blend; FloatImage heightImage = await height; brightest = heightImage; - + Console.Write("a"); previous = await FloatImage.Blend(new FloatImage[] { blendImage, heightImage }, true); }