zoukankan      html  css  js  c++  java
  • OpenCV——老照片效果

    // define head function
    #ifndef PS_ALGORITHM_H_INCLUDED
    #define PS_ALGORITHM_H_INCLUDED
    
    #include <iostream>
    #include <string>
    #include "cv.h"
    #include "highgui.h"
    #include "cxmat.hpp"
    #include "cxcore.hpp"
    
    using namespace std;
    using namespace cv;
    
    
    void Show_Image(Mat&, const string &);
    
    
    #endif // PS_ALGORITHM_H_INCLUDED
    
    /*
    This program will generate
     "Old Picture" effect.
    
    */
    
    #include "PS_Algorithm.h"
    #include <time.h>
    
    using namespace std;
    using namespace cv;
    
    int main(void)
    {
        string Img_name("9.jpg");
        Mat Image_in;
        Image_in=imread(Img_name);
        Show_Image(Image_in, Img_name);
        Mat Image_out(Image_in.size(), CV_32FC3);
        Image_in.convertTo(Image_out, CV_32FC3);
    
        Mat Image_2(Image_in.size(), CV_32FC3);
        Image_in.convertTo( Image_2, CV_32FC3);
    
        Mat r(Image_in.rows, Image_in.cols, CV_32FC1);
        Mat g(Image_in.rows, Image_in.cols, CV_32FC1);
        Mat b(Image_in.rows, Image_in.cols, CV_32FC1);
    
        Mat out[]={b, g, r};
    
        split(Image_2, out);
    
        Mat r_new(Image_in.rows, Image_in.cols, CV_32FC1);
        Mat g_new(Image_in.rows, Image_in.cols, CV_32FC1);
        Mat b_new(Image_in.rows, Image_in.cols, CV_32FC1);
    
        r_new=0.393*r+0.769*g+0.189*b;
        g_new=0.349*r+0.686*g+0.168*b;
        b_new=0.272*r+0.534*g+0.131*b;
    
        Mat rgb[]={b_new, g_new, r_new};
    
        merge(rgb,3,Image_out);
    
        Image_out=Image_out/255;
    
        Show_Image(Image_out, "out.jpg");
    
        imwrite("out.jpg", Image_out*255);
    
        waitKey();
        cout<<"All is well."<<endl;
    
    }
    
    #include "PS_Algorithm.h"
    #include <iostream>
    #include <string>
    
    using namespace std;
    using namespace cv;
    
    void Show_Image(Mat& Image, const string& str)
    {
        namedWindow(str.c_str(),CV_WINDOW_AUTOSIZE);
        imshow(str.c_str(), Image);
    
    }
    

    原图

     

    效果图




  • 相关阅读:
    forward和redirect的区别详解
    j2ee部分jar包的作用
    Struts2的工作原理(图解)详解
    struts2的s:iterator 标签 详解
    Struts2 控制标签:<s:if>、<s:elseif>和<s:else>
    Struts2 资源配置文件国际化详解
    ActionContext和ServletActionContext区别以及action访问servlet API的三种方法
    js获取class
    怎么解决eclipse报PermGen space异常的问题
    SQL模糊查找语句详解
  • 原文地址:https://www.cnblogs.com/mtcnn/p/9412664.html
Copyright © 2011-2022 走看看