-
Notifications
You must be signed in to change notification settings - Fork 1
MostBright
George Plotnikov edited this page Mar 15, 2018
·
2 revisions
Generates image with the selecting the most bright pixels
ImageBlendingAlgorithms/IBALib/BlendingAlgorithms/MostBright.cs
public override Color Calculate(IEnumerable<Color> colors )
{
var a = colors.ElementAt(0);
var b = colors.ElementAt(1);
return (a.R + a.G + a.B) / 3f >= (b.R + b.G + b.B) / 3 ? a : b;
}
the results of handling 3 source images