そのため、画像をグレースケールに変換するために、Webで見つけたもののバリエーションを使用しています。「フェードトゥグレー」、つまり色を段階的にフェードさせて、フルカラーから部分的なカラーから純粋なグレーに移行できるようにしたいと思います。
public static ColorMatrix ColorMatrixForGrayScale = new ColorMatrix(new[] {
new[] {.3f, .3f, .3f, 0, 0},
new[] {.59f, .59f, .59f, 0, 0},
new[] {.11f, .11f, .11f, 0, 0},
new float[] {0, 0, 0, 1, 0},
new float[] {0, 0, 0, 0, 1} });
public static Bitmap MakeGrayscale(Image original, int percent = 100)
{
ColorMatrix matrix = GetMatrix(percent); // returns a variation of the above.
//create a blank bitmap the same size as original
var newBitmap = new Bitmap(original.Width, original.Height);
//get a graphics object from the new image
var g = System.Drawing.Graphics.FromImage(newBitmap);
//create some image attributes
var attributes = new ImageAttributes();
//set the color matrix attribute
attributes.SetColorMatrix(matrix);
//draw the original image on the new image
//using the grayscale color matrix
g.DrawImage(original, new Rectangle(0, 0, original.Width, original.Height),
0, 0, original.Width, original.Height, GraphicsUnit.Pixel, attributes);
//dispose the Graphics object
g.Dispose();
return newBitmap;
}
したがって、問題は2つの部分です。まず、そのためにマトリックスを使用できますか?はいの場合、私は何を変えますか、いいえの場合、実行可能なアプローチは何ですか?フルグレースケールを作成し、それをカラー画像とマージすることを考えています(何らかの方法で)。
ありがとう
編集:元のソースコードをオンにします