中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Bitmap圖像在C#中的直方圖均衡

發布時間:2024-07-16 10:30:07 來源:億速云 閱讀:81 作者:小樊 欄目:編程語言

直方圖均衡是一種用于增強圖像對比度的技術,通過對圖像的像素值進行調整,使得圖像的亮度分布更均勻。在C#中,可以使用以下代碼實現對Bitmap圖像的直方圖均衡:

using System;
using System.Drawing;
using System.Drawing.Imaging;

class Program
{
    static void Main()
    {
        // 讀取圖像
        Bitmap bmp = new Bitmap("image.jpg");

        // 獲取圖像的直方圖
        int[] histogram = new int[256];
        for (int y = 0; y < bmp.Height; y++)
        {
            for (int x = 0; x < bmp.Width; x++)
            {
                Color pixel = bmp.GetPixel(x, y);
                int gray = (int)(0.299 * pixel.R + 0.587 * pixel.G + 0.114 * pixel.B);
                histogram[gray]++;
            }
        }

        // 計算累積分布函數
        int[] cdf = new int[256];
        cdf[0] = histogram[0];
        for (int i = 1; i < 256; i++)
        {
            cdf[i] = cdf[i - 1] + histogram[i];
        }

        // 歸一化
        for (int i = 0; i < 256; i++)
        {
            cdf[i] = (int)((double)(cdf[i] - cdf[0]) / ((bmp.Width * bmp.Height) - cdf[0]) * 255);
        }

        // 應用直方圖均衡
        for (int y = 0; y < bmp.Height; y++)
        {
            for (int x = 0; x < bmp.Width; x++)
            {
                Color pixel = bmp.GetPixel(x, y);
                int gray = (int)(0.299 * pixel.R + 0.587 * pixel.G + 0.114 * pixel.B);
                int newGray = cdf[gray];
                Color newPixel = Color.FromArgb(newGray, newGray, newGray);
                bmp.SetPixel(x, y, newPixel);
            }
        }

        // 保存均衡化后的圖像
        bmp.Save("equalized_image.jpg", ImageFormat.Jpeg);
    }
}

在這段代碼中,首先讀取了一張圖像,然后計算了圖像的直方圖并根據直方圖計算了累積分布函數。接著對圖像的每個像素進行直方圖均衡的處理,最后保存均衡化后的圖像。通過這個過程,可以將圖像的對比度得到增強,使得圖像更加清晰和易于分析。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

朔州市| 湖州市| 黔西县| 卢氏县| 彭山县| 铜梁县| 金坛市| 日土县| 天门市| 叶城县| 古蔺县| 浑源县| 永修县| 观塘区| 福安市| 修文县| 通辽市| 吉安市| 临夏县| 山东| 福鼎市| 镇平县| 黔西县| 共和县| 嫩江县| 霍邱县| 常州市| 衡水市| 山丹县| 新巴尔虎左旗| 吴桥县| 吉木乃县| 拜城县| 南充市| 长兴县| 白朗县| 鲁甸县| 当涂县| 盐边县| 霍林郭勒市| 北宁市|