Skip to main content

How to Make a Clear the Color Image (Histogram Equalization)?

How To Make A Clear The Color Image (Histogram Equalization)?

How To Make A Clear The Color Image (Histogram Equalization)?

Introduction

Sometimes, we have some vague color photo that are not clear. It can be solved. In the image processing field, it's called histogram equalization. It is important that it can expand the histogram of the image. Then, your photos will be clear.

Equipment

Operation System: Microsoft Windows 7 (64 bit)
Development Utility: Microsoft Visual Studio 2010

Usage


// The histogram array of the red channel.
double  aryHistogramR[256] = {0};
// The transform of histogram array of the red channel.
double  aryTransformR[256] = {0};
// The sum of pixel's gray of the red channel.
double  dobSumR = 0.0f;
// The histogram array of the red channel.
double  aryHistogramG[256] = {0};
// The transform of histogram array of the red channel.
double  aryTransformG[256] = {0};
// The sum of pixel's gray of the red channel.
double  dobSumG = 0.0f;
// The histogram array of the red channel.
double  aryHistogramB[256] = {0};
// The transform of histogram array of the red channel.
double  aryTransformB[256] = {0};
// The sum of pixel's gray of the red channel.
double  dobSumB = 0.0f;
// The temporal variables.
int     iJ   = 0;
int     iK   = 0;
// Clear the histogram.
memset ( aryHistogramR, 0x00, 256 * sizeof( double ) );
memset ( aryHistogramG, 0x00, 256 * sizeof( double ) );
memset ( aryHistogramB, 0x00, 256 * sizeof( double ) );
// The height of the image.
for ( int iY = 0; iY < imageA->DibInfo->bmiHeader.biHeight; iY++ )
{
    // The width of the image.
    for ( int iX = 0; iX < imageA->DibInfo->bmiHeader.biWidth; iX++ )
    {
        // The index is pixel position. If your bit depth is not three, you should fix it.
        // This is twenty-four bit, so there are three bytes.
        lIDXA = ( iX * 3 ) + ( iY * imageA->DibInfo->bmiHeader.biWidth * 3 );
        // Get the pixel of the blue channel.
        byteRGB_BA = imageA->DibArry[lIDXA+0];
        // Get the pixel of the green channel.
        byteRGB_GA = imageA->DibArry[lIDXA+1];
        // Get the pixel of the read channel.
        byteRGB_RA = imageA->DibArry[lIDXA+2];
        // Record gray degree to histogram.
        aryHistogramR[INT(byteRGB_RA)]++;
        aryHistogramG[INT(byteRGB_GA)]++;
        aryHistogramB[INT(byteRGB_BA)]++;
    } // The closing "the width of the image"
} // The closing "the height of the image"
// Clear the transform of histogram array
memset ( aryTransformR, 0x00, 256 * sizeof( double ) );
memset ( aryTransformG, 0x00, 256 * sizeof( double ) );
memset ( aryTransformB, 0x00, 256 * sizeof( double ) );
// The length of the histogram.
for ( iJ = 0; iJ <= 255; iJ++ )
{
    // Clear the variable of sum.
    dobSumR = 0.0f;
    dobSumG = 0.0f;
    dobSumB = 0.0f;
    // The length of the gray degree.
    for ( iK = 0; iK <= iJ; iK++ )
    {
        // The sum of gray degree.
        dobSumR = dobSumR + aryHistogramR[iK];
        dobSumG = dobSumG + aryHistogramG[iK];
        dobSumB = dobSumB + aryHistogramB[iK];
        // Transform old gray to new gray.
        // This is a rate calculate, we compute this sum, multiply 255 and then divide the image size that means divide whole pixels.
        // The results are talking us where pixel transforms.
        aryTransformR[iJ] = ( 255.0 * dobSumR / ( imageA->DibInfo->bmiHeader.biWidth * imageA->DibInfo->bmiHeader.biHeight ));
        aryTransformG[iJ] = ( 255.0 * dobSumG / ( imageA->DibInfo->bmiHeader.biWidth * imageA->DibInfo->bmiHeader.biHeight ));
        aryTransformB[iJ] = ( 255.0 * dobSumB / ( imageA->DibInfo->bmiHeader.biWidth * imageA->DibInfo->bmiHeader.biHeight ));
    } // The closing "the length of the gray degree".
} // The closing "the length of histogram".
// The height of the image.
for ( int iY = 0; iY < imageA->DibInfo->bmiHeader.biHeight; iY++ )
{
    // The width of the image.
    for ( int iX = 0; iX < imageA->DibInfo->bmiHeader.biWidth; iX++ )
    {
        // The index is pixel position. If your bit depth is not three, you should fix it.
        // This is twenty-four bit, so there are three bytes.
        lIDXA = ( iX * 3 ) + ( iY * imageA->DibInfo->bmiHeader.biWidth * 3 );
        // Get the pixel of the blue channel.
        byteRGB_BA = imageA->DibArry[lIDXA+0];
        // Get the pixel of the green channel.
        byteRGB_GA = imageA->DibArry[lIDXA+1];
        // Get the pixel of the read channel.
        byteRGB_RA = imageA->DibArry[lIDXA+2];
        // Set the pixel transform to new pixel of the blue channel.
        imageB->DibArry[lIDXA+0] = aryTransformB[INT(byteRGB_BA)];
        // Set the pixel transform to new pixel of the green channel.
        imageB->DibArry[lIDXA+1] = aryTransformG[INT(byteRGB_GA)];
        // Set the pixel transform to new pixel of the red channel.
        imageB->DibArry[lIDXA+2] = aryTransformR[INT(byteRGB_RA)];
    } // The closing "the height of the image".
} // The closing "the width of the image".

image.png

You can download source code and binary code form this hyperlink as below.
https://drive.google.com/file/d/0BzHb_OyLyVZlejlCLUZidlg0UWM/view?usp=sharing

Exception

  1. There is a notice, if your bit depth of bitmap file are not 24 bits, you should change your bitmap files to adapt this program, or you could rewrite this source code to fit your bitmap format.

  2. You have to install Microsoft SDK v7.1, because I include windowscodes.lib.
    #pragma comment(lib, "windowscodecs.lib")

Reference

[1] Gary Bradski and Adrian Kaehler, “Learning OpenCV: Computer Vision with the OpenCV Library,” O’REILLY, September 2008, ISBN:978-0-596-51613-0

Acknowledge

Thank you (Microsoft Visual Studio 2010, Lenna Sjööblom) very much for this great development utility and beautiful photo.

Popular Posts

波蘭文學習之旅:1-1. 波蘭文字母與發音(注音版)

最佳化處理策略之快速消除扭曲演算法

Python 日期與時間的處理

波蘭文學習之旅:1-1. 波蘭文字母與發音(注音版)

Image

最佳化處理策略之快速消除扭曲演算法

Image

Python 日期與時間的處理

Image

Visual Basic 6.0 程式案例學習: 10. 條碼列印程式 (2014版)

Image

Visual Basic .Net 程式案例學習: 06. 題庫測驗系統 (2014版)

Image

修復損毀的 SQLite DB 資料庫

Image

用10種程式語言做影像二值化(Image binarization)

Image

解決 ValueError: If using all scalar values, you must pass an index

Image

Visual Basic 6.0 程式案例學習: 04. 人事考勤管理系統 (2014版)

Image

Visual Basic 6.0 程式案例學習: 07. 收據列印程式 (2014版)

Image

佑佑的 Line 貼圖創作

貼圖作者網址:

https://line.me/S/shop/sticker/author/3883362

靜態貼圖

 
 
 
 
  牡羊座:狗狗角色

作者:佑佑
依照牡羊座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  金牛座:兔兔角色

作者:佑佑
依照金牛座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  雙子座:貓貓角色

作者:佑佑
依照雙子座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  巨蟹座:倉鼠角色

作者:佑佑
依照巨蟹座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
 
 
 
 
  獅子座:幼獅角色

作者:佑佑
依照獅子座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  處女座:松鼠角色

作者:佑佑
依照處女座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  天秤座:鴿子角色

作者:佑佑
依照天秤座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  天蠍座:鳳凰角色

作者:佑佑
依照天蠍座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
 
 
 
 
  射手座:人馬角色

作者:佑佑
依照射手座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  魔羯座:山羊角色

作者:佑佑
依照魔羯座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  水瓶座:海豚角色

作者:佑佑
依照水瓶座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
  雙魚座:小丑魚角色

作者:佑佑
依照雙魚座的個性優點、個性缺點、生活習慣、理財習慣、社交習慣、愛情觀、節假日、禮貌問候,所編撰的貼圖。星座只能當參考用,不會完全準確。
購買貼圖
 
 
 
 
  上班族都變成狒狒,心裡想要說的話。

作者:佑佑
最近在台灣走紅的狒狒,用擬人化的方式,變成上班族,畫出心裡的想說的話。
購買貼圖
  接案派遣的日常

作者:佑佑
接案派遣到其他公司的日常對話,有調皮、正經、日常對話。
購買貼圖
  貓女事務員的搞笑時刻

作者:佑佑
把行政人員在職場上遇到千奇百怪的事情畫出來,用可愛的貓女來擔任行政人員的代言人。
購買貼圖
  貓貓說每天都會用到的話

作者:佑佑
日常生活常見的短句,用小貓擬人化的方式呈現,比較親切可愛。
購買貼圖
 
     
  大人的煩惱特輯:小兔角色

作者:佑佑
錢包餓了,生活苦了。變美變健康?先讓我睡飽吧。心好累,我需要充電。
購買貼圖
     

動態貼圖

 
 
 
 
  牡羊座日常交際:狗狗角色

作者:佑佑
依照牡羊座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  金牛座日常交際:兔兔角色

作者:佑佑
依照金牛座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  雙子座日常交際:貓貓角色

作者:佑佑
依照雙子座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  巨蟹座日常交際:倉鼠角色

作者:佑佑
依照巨蟹座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
 
 
 
 
  獅子座日常交際:幼獅角色

作者:佑佑
依照獅子座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  處女座日常交際:松鼠角色

作者:佑佑
依照處女座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  天秤座日常交際:鴿子角色

作者:佑佑
依照天秤座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  天蠍座日常交際:鳳凰角色

作者:佑佑
依照天蠍座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
 
 
 
 
  射手座日常交際:人馬角色

作者:佑佑
依照射手座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  魔羯座日常交際:山羊角色

作者:佑佑
依照魔羯座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  水瓶座日常交際:海豚角色

作者:佑佑
依照水瓶座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
  雙魚座日常交際:小丑魚角色

作者:佑佑
依照雙魚座的個性,描繪日常生活的行為,供交際表達心情使用。星座只能當參考用,不會完全準確。
購買貼圖
 
     
  厭世報:鬍渣男

作者:佑佑
厭世總有個理由跟原因,實在是令人不爽,為什麼最倒楣的總是我?真希望明天就是世界末日,讓大家都一樣慘。
購買貼圖
     

表情貼

 
 
 
 
  貓貓說每天都用得到的表情貼

作者:佑佑
日常生活常見的表情用語,用小貓擬人化的方式呈現,比較親切可愛。
購買貼圖
  天秤座的表情貼:鴿子角色

作者:佑佑
日常生活常見的表情用語,天秤座的鴿子擬人化方式呈現,比較親切可愛。
購買貼圖
  天蠍座的表情貼:鳳凰角色

作者:佑佑
日常生活常見的表情用語,天蠍座的鳳凰擬人化方式呈現,比較親切可愛。
購買貼圖
  射手座的表情貼:人馬角色

作者:佑佑
日常生活常見的表情用語,射手座的人馬擬人化方式呈現,比較親切可愛。
購買貼圖
 
 
 
 
  魔羯座的表情貼:山羊角色

作者:佑佑
日常生活常見的表情用語,魔羯座的山羊擬人化方式呈現,比較親切可愛。
購買貼圖
  水瓶座的表情貼:海豚角色

作者:佑佑
日常生活常見的表情用語,水瓶座的海豚擬人化方式呈現,比較親切可愛。
購買貼圖
  雙魚座的表情貼:小丑魚角色

作者:佑佑
日常生活常見的表情用語,雙魚座的小丑魚擬人化方式呈現,比較親切可愛。
購買貼圖