您好,登錄后才能下訂單哦!
直方圖均衡是一種用于增強圖像對比度的技術,通過對圖像的像素值進行調整,使得圖像的亮度分布更均勻。在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);
}
}
在這段代碼中,首先讀取了一張圖像,然后計算了圖像的直方圖并根據直方圖計算了累積分布函數。接著對圖像的每個像素進行直方圖均衡的處理,最后保存均衡化后的圖像。通過這個過程,可以將圖像的對比度得到增強,使得圖像更加清晰和易于分析。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。