亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

山阳县| 湟中县| 丰城市| 舟山市| 夹江县| 固始县| 时尚| 靖安县| 乐陵市| 梁山县| 车险| 石阡县| 陈巴尔虎旗| 攀枝花市| 中山市| 文山县| 北京市| 淳安县| 新郑市| 姚安县| 峨眉山市| 昌吉市| 扎囊县| 新乐市| 新巴尔虎右旗| 安乡县| 泸州市| 吉首市| 大冶市| 潜山县| 朝阳市| 房产| 新丰县| 金寨县| 屏东县| 邻水| 开化县| 江城| 云安县| 泰顺县| 宣威市|