午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

圖像處理

 萬(wàn)書(shū)草堂 2017-11-11

很多時(shí)候,一張圖像被過(guò)度曝光顯得很白,或者光線不足顯得很暗,有時(shí)候背景跟圖像人物

也觀察不清楚,這個(gè)時(shí)候可以通過(guò)調(diào)節(jié)圖像的兩個(gè)基本屬性-亮度與對(duì)比度來(lái)獲得整體效果

的提升,從而得到質(zhì)量更高的圖片。

 

基本原理:

圖像亮度本質(zhì)上圖像中每個(gè)像素的亮度,每個(gè)像素的亮度本質(zhì)上RGB值的大小,RGB值為0

是像素點(diǎn)為黑色,RGB都為255時(shí)像素點(diǎn)最亮,為白色。對(duì)比度則是不同像素點(diǎn)之間的差值,

差值越大,對(duì)比度越明顯。從直方圖分析的觀點(diǎn)來(lái)看,對(duì)比度越好的圖片,直方圖曲線會(huì)越

明顯,分布也越顯得均勻。

 

算法流程:

調(diào)整圖像亮度與對(duì)比度算法主要由以下幾個(gè)步驟組成:

1.      計(jì)算圖像的RGB像素均值– M

2.      對(duì)圖像的每個(gè)像素點(diǎn)Remove平均值-M

3.      對(duì)去掉平均值以后的像素點(diǎn) P乘以對(duì)比度系數(shù)

4.      對(duì)步驟上處理以后的像素P加上 M乘以亮度系統(tǒng)

5.      對(duì)像素點(diǎn)RGB值完成重新賦值

 

算法系數(shù)

對(duì)比度 contrast的最佳取值范圍在[0 ~ 4],

亮度 brightness的最佳取值范圍在[0~ 2]之間

算法的源程序代碼見(jiàn)最后源代碼部分

 

程序效果:

調(diào)整亮度與對(duì)比度的濾鏡源代碼如下:

  1. package com.process.blur.study;  
  2.   
  3. import java.awt.image.BufferedImage;  
  4.   
  5. /** 
  6.  * this filter illustrate the brightness and contrast of the image 
  7.  * and demo how to change the both attribute of the image. 
  8.  *  
  9.  * @author gloomy fish 
  10.  * 
  11.  */  
  12. public class ConBriFilter extends AbstractBufferedImageOp {  
  13.   
  14.     private float contrast = 1.5f; // default value;  
  15.     private float brightness = 1.0f; // default value;  
  16.       
  17.     public ConBriFilter() {  
  18.         // do stuff here if you need......  
  19.     }  
  20.       
  21.     @Override  
  22.     public BufferedImage filter(BufferedImage src, BufferedImage dest) {  
  23.         int width = src.getWidth();  
  24.         int height = src.getHeight();  
  25.   
  26.         if ( dest == null )  
  27.             dest = createCompatibleDestImage( src, null );  
  28.   
  29.         int[] inPixels = new int[width*height];  
  30.         int[] outPixels = new int[width*height];  
  31.         src.getRGB( 00, width, height, inPixels, 0, width );  
  32.           
  33.         // calculate RED, GREEN, BLUE means of pixel  
  34.         int index = 0;  
  35.         int[] rgbmeans = new int[3];  
  36.         double redSum = 0, greenSum = 0, blueSum = 0;  
  37.         double total = height * width;  
  38.         for(int row=0; row<>
  39.             int ta = 0, tr = 0, tg = 0, tb = 0;  
  40.             for(int col=0; col<>
  41.                 index = row * width + col;  
  42.                 ta = (inPixels[index] >> 24) & 0xff;  
  43.                 tr = (inPixels[index] >> 16) & 0xff;  
  44.                 tg = (inPixels[index] >> 8) & 0xff;  
  45.                 tb = inPixels[index] & 0xff;  
  46.                 redSum += tr;  
  47.                 greenSum += tg;  
  48.                 blueSum +=tb;  
  49.             }  
  50.         }  
  51.           
  52.         rgbmeans[0] = (int)(redSum / total);  
  53.         rgbmeans[1] = (int)(greenSum / total);  
  54.         rgbmeans[2] = (int)(blueSum / total);  
  55.           
  56.         // adjust contrast and brightness algorithm, here  
  57.         for(int row=0; row<>
  58.             int ta = 0, tr = 0, tg = 0, tb = 0;  
  59.             for(int col=0; col<>
  60.                 index = row * width + col;  
  61.                 ta = (inPixels[index] >> 24) & 0xff;  
  62.                 tr = (inPixels[index] >> 16) & 0xff;  
  63.                 tg = (inPixels[index] >> 8) & 0xff;  
  64.                 tb = inPixels[index] & 0xff;  
  65.                   
  66.                 // remove means  
  67.                 tr -=rgbmeans[0];  
  68.                 tg -=rgbmeans[1];  
  69.                 tb -=rgbmeans[2];  
  70.                   
  71.                 // adjust contrast now !!!  
  72.                 tr = (int)(tr * getContrast());  
  73.                 tg = (int)(tg * getContrast());  
  74.                 tb = (int)(tb * getContrast());  
  75.                   
  76.                 // adjust brightness  
  77.                 tr += (int)(rgbmeans[0] * getBrightness());  
  78.                 tg += (int)(rgbmeans[1] * getBrightness());  
  79.                 tb += (int)(rgbmeans[2] * getBrightness());  
  80.                 outPixels[index] = (ta <>24) | (clamp(tr) <>16) | (clamp(tg) <>8) | clamp(tb);  
  81.             }  
  82.         }  
  83.         setRGB( dest, 00, width, height, outPixels );  
  84.         return dest;  
  85.     }  
  86.       
  87.     public int clamp(int value) {  
  88.         return value > 255 ? 255 :(value <>0 ? 0 : value);  
  89.     }  
  90.   
  91.     public float getContrast() {  
  92.         return contrast;  
  93.     }  
  94.   
  95.     public void setContrast(float contrast) {  
  96.         this.contrast = contrast;  
  97.     }  
  98.   
  99.     public float getBrightness() {  
  100.         return brightness;  
  101.     }  
  102.   
  103.     public void setBrightness(float brightness) {  
  104.         this.brightness = brightness;  
  105.     }  
  106.   
  107. }  

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多