From ed5d488eac8f75655ccb45761d52a6e54bf8df62 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Wed, 11 Jan 2023 11:48:52 +0000 Subject: [PATCH] float done now float video --- Program.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 32ec61b..6d99a6b 100644 --- a/Program.cs +++ b/Program.cs @@ -65,8 +65,15 @@ namespace Cupola fImages[i] = new FloatImage(images[i]); } - Bitmap final = FloatImage.Blend(fImages, true).ToBitmap(); + Console.WriteLine("BLEND"); + FloatImage blend = FloatImage.Blend(fImages, true); + Console.WriteLine("HEIHGT"); + FloatImage height = FloatImage.Highest(fImages); + Console.WriteLine("FINAL"); + Bitmap final = FloatImage.Blend(new FloatImage[] { blend, height }, true).ToBitmap(); + + Console.WriteLine("SAVE"); final.Save(name + ".png"); } }