學習OpenCV:濾鏡系列(12)——計算模式(強光)
【原文:http://blog.csdn.net/yangtrees/article/details/9206967】
==============================================
版權所有:小熊不去實驗室CSDN部落格
==============================================
R(上)>127.5
R=R(下)+(255-R(下))*(R(上)-127.5)/127.5;
R(上)<127.5
R=R(下)-R(下)*(127.5-R(上))/127.5=(R(上)*R(下))/127.5;
- #include <math.h>
- #include <opencv/cv.h>
- #include <opencv/highgui.h>
- using namespace cv;
- using namespace std;
- int R=11;
- int main()
- {
- Mat src = imread("D:/img/liushishi02.jpg",1);
- imshow("src",src);
- int width=src.cols;
- int heigh=src.rows;
- Mat img;
- src.copyTo(img);
- Mat dst(img.size(),CV_8UC3);
- Mat dst1u[3];
- float tmp,r;
- for (int y=0;y<heigh;y++)
- {
- uchar* imgP=img.ptr<uchar>(y);
- uchar* dstP=dst.ptr<uchar>(y);
- for (int x=0;x<width;x++)
- {
- r = (float)imgP[3*x];
- if(r>127.5)
- tmp = r+(255-r)*(r-127.5)/127.5;
- else
- tmp = r*r/127.5;
- tmp=tmp>255?255:tmp;
- tmp=tmp<0?0:tmp;
- dstP[3*x]=(uchar)(tmp);
- r = (float)imgP[3*x+1];
- if(r>127.5)
- tmp = r+(255-r)*(r-127.5)/127.5;
- else
- tmp = r*r/127.5;
- tmp=tmp>255?255:tmp;
- tmp=tmp<0?0:tmp;
- dstP[3*x+1]=(uchar)(tmp);
- r = (float)imgP[3*x+2];
- if(r>127.5)
- tmp = r+(255-r)*(r-127.5)/127.5;
- else
- tmp = r*r/127.5;
- tmp=tmp>255?255:tmp;
- tmp=tmp<0?0:tmp;
- dstP[3*x+2]=(uchar)(tmp);
- }
- }
- imshow("強光",dst);
- split(dst,dst1u);
- imshow("綠通道強光",dst1u[1]);
- waitKey();
- imwrite("D:/img/強光.jpg",dst);
- imwrite("D:/img/強光_藍通道.jpg",dst1u[0]);
- imwrite("D:/img/強光_綠通道.jpg",dst1u[1]);
- imwrite("D:/img/強光_紅通道.jpg",dst1u[2]);
- }
原圖:
計算強光:
紅通道:
綠通道:
藍通道:
相關文章
- 學習OpenCV:濾鏡系列(13)——計算模式演算法集合OpenCV模式演算法
- 學習OpenCV:濾鏡系列(6)——風OpenCV
- 學習OpenCV:濾鏡系列(8)——素描OpenCV
- 學習OpenCV:濾鏡系列(1)—— 雕刻&浮雕OpenCV
- 學習OpenCV:濾鏡系列(4)——波浪:正弦OpenCV
- 學習OpenCV:濾鏡系列(7)——漩渦OpenCV
- 學習OpenCV:濾鏡系列(2)——擴張&擠壓OpenCV
- 學習OpenCV:濾鏡系列(9)——擴散(毛玻璃)OpenCV
- 學習OpenCV:濾鏡系列(14)——載入選區OpenCV
- 學習OpenCV:濾鏡系列(15)——羽化(模糊邊緣)OpenCV
- 學習OpenCV:濾鏡系列(5)——徑向模糊:縮放&旋轉OpenCV
- 學習OpenCV:濾鏡系列(11)——高反差保留 (6.30修改版)OpenCV
- 學習OpenCV:濾鏡系列(10)——懷舊色 & 連環畫 & 熔鑄 & 冰凍OpenCV
- Python-OpenCV 處理影象(二):濾鏡和影象運算PythonOpenCV
- OpenCV計算機視覺學習(4)——影像平滑處理(均值濾波,高斯濾波,中值濾波,雙邊濾波)OpenCV計算機視覺
- OpenCV計算機視覺學習(10)——影像變換(傅立葉變換,高通濾波,低通濾波)OpenCV計算機視覺
- 【OpenCV學習】影象卷積濾波OpenCV卷積
- Canvas系列之一——濾鏡效果Canvas
- 強大的濾鏡配置軟體
- 有意思!強大的 SVG 濾鏡SVG
- 如何在 Mac 上使用藍光濾鏡?macOS 電腦如何開啟夜覽模式?Mac模式
- 影像濾鏡藝術----Brannan濾鏡NaN
- OpenCV 例項解讀:深度學習的計算與加速OpenCV深度學習
- 【OpenCV學習】計算兩幅影象的重疊區域OpenCV
- Knoll Light Factory Mac(Ae/Pr燈光工廠濾鏡)Mac
- 設計模式系列 12– 職責鏈模式設計模式
- opencv 學習OpenCV
- OpenCV學習OpenCV
- matlab練習程式(Sepia Tone濾鏡)Matlab
- 強大的CSS:濾鏡和混合模式處理的圖片如何上傳下載?CSS模式
- 強化學習系列(1):簡介強化學習
- SVG <filter> 濾鏡SVGFilter
- CSS濾鏡(filter)CSSFilter
- GPUImage濾鏡列表GPUUI
- 美顏濾鏡SDK的智慧濾鏡與傳統顏色濾鏡有什麼區別?
- 人工智慧 (12) 強化學習人工智慧強化學習
- 【opencv實戰】哈哈鏡OpenCV
- portraiture 3 mac - 最強ps人像美化磨皮濾鏡AIMac