學習OpenCV:濾鏡系列(8)——素描

查志強發表於2014-11-25

【原文:http://blog.csdn.net/yangtrees/article/details/9115321

==============================================

版權所有:小熊不去實驗室CSDN部落格

==============================================


熟悉photoshop的朋友都知道,把彩色圖片打造成素描的效果僅僅需要幾步操作:

1、去色;

2、複製去色圖層,並且反色;反色為Y(i,j)=255-X(i,j)

3、對反色影象進行高斯模糊;

4、模糊後的影象疊加模式選擇顏色減淡效果。

減淡公式:C =MIN( A +(A×B)/(255-B),255),其中C為混合結果,A為去色後的畫素點,B為高斯模糊後的畫素點。


  1. #include <math.h>  
  2. #include <opencv/cv.h>  
  3. #include <opencv/highgui.h>  
  4.   
  5. using namespace cv;  
  6. using namespace std;  
  7.   
  8. int main()  
  9. {  
  10.     Mat src = imread("D:/arrow.jpg",1);  
  11.     int width=src.cols;  
  12.     int heigh=src.rows;  
  13.     Mat gray0,gray1;  
  14.     //去色  
  15.     cvtColor(src,gray0,CV_BGR2GRAY);  
  16.     //反色  
  17.     addWeighted(gray0,-1,NULL,0,255,gray1);  
  18.     //高斯模糊,高斯核的Size與最後的效果有關  
  19.     GaussianBlur(gray1,gray1,Size(11,11),0);  
  20.   
  21.     //融合:顏色減淡  
  22.     Mat img(gray1.size(),CV_8UC1);  
  23.     for (int y=0; y<heigh; y++)  
  24.     {  
  25.   
  26.         uchar* P0  = gray0.ptr<uchar>(y);  
  27.         uchar* P1  = gray1.ptr<uchar>(y);  
  28.         uchar* P  = img.ptr<uchar>(y);  
  29.         for (int x=0; x<width; x++)  
  30.         {  
  31.             int tmp0=P0[x];  
  32.             int tmp1=P1[x];  
  33.             P[x] =(uchar) min((tmp0+(tmp0*tmp1)/(256-tmp1)),255);  
  34.         }  
  35.   
  36.     }  
  37.     imshow("素描",img);  
  38.     waitKey();  
  39.     imwrite("D:/素描.jpg",img);  
  40. }  

原圖:


素描:



Reference:http://blog.csdn.net/wsfdl/article/details/7610634


相關文章