【C#】画像のネガポジ変換(色反転)

C#を用いて、画像をネガポジ変換(色反転)する方法について紹介します。

## ネガポジ変換(色反転)(C#)

ネガポジ変換(色反転)は、画像の輝度値(明るさ)を反転する処理手です。
今回はこれをC#で実装してみました。

## ソースコード

プログラムのソースコードです。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Drawing.Imaging;

namespace ReverseColor
{
    class Program
    {
        static void Main(string[] args)
        {
            // 画像の読み込み(グレースケールに変換)
            byte[,] img = LoadImageGray("src.jpg");
            // ネガポジ変換
            byte[,] img2 = ReverseColor(img);
            // 画像保存
            SaveImage(img2, "dst.jpg");
        }

        // 画像をグレースケール変換して読み込み
        static byte[,] LoadImageGray(string filename)
        {
            Bitmap img = new Bitmap(filename);
            int w = img.Width;
            int h = img.Height;
            byte[,] dst = new byte[w, h];

            // bitmapクラスの画像ピクセル値を配列に挿入
            for (int i = 0; i < h; i++)
            {
                for (int j = 0; j < w; j++)
                {
                    // グレイスケールに変換
                    dst[j, i] = (byte)((img.GetPixel(j, i).R + img.GetPixel(j, i).B + img.GetPixel(j, i).G) / 3);
                }
            }
            return dst;
        }

        static void SaveImage(byte[,] src, string filename)
        {
            // 画像データの幅と高さを取得
            int w = src.GetLength(0);
            int h = src.GetLength(1);

            Bitmap img = new Bitmap(w, h);

            // ピクセル値のセット
            for (int i = 0; i < h; i++)
            {
                for (int j = 0; j < w; j++)
                {
                    img.SetPixel(j, i, Color.FromArgb(src[j, i], src[j, i], src[j, i]));
                }
            }

            // 画像の保存
            img.Save(filename);
        }
        static byte[,] ReverseColor(byte[,] src)
        {
                // 縦横サイズを配列から読み取り
                int w = src.GetLength(0);
                int h = src.GetLength(1);
                // 出力画像用の配列
                byte[,] dst = new byte[w, h];

                // ネガポジ反転
                for (int i = 0; i < h; i++)
                {
                    for (int j = 0; j < w; j++)
                    {
                        dst[j, i] = DoubleToByte(255 - src[j, i]);
                    }
            }
            return dst;
        }

        // double型をbyte型に変換
        static byte DoubleToByte(double num)
        {
            if (num > 255.0) return 255;
            else if (num < 0) return 0;
            else return (byte)num;
        }

    }
}

## 実行結果

プログラムの実行結果です。

■入力画像と出力画像

- 関連ページ
1 C#で画像処理入門
2 C#入門】基礎文法とサンプル集

コメント