程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> Opencv— — Color Gradient

Opencv— — Color Gradient

編輯:關於C++

// define head function
#ifndef PS_ALGORITHM_H_INCLUDED
#define PS_ALGORITHM_H_INCLUDED

#include 
#include 
#include "cv.h"
#include "highgui.h"
#include "cxmat.hpp"
#include "cxcore.hpp"
#include "math.h"

using namespace std;
using namespace cv;

void Show_Image(Mat&, const string &);

#endif // PS_ALGORITHM_H_INCLUDED


#include "PS_Algorithm.h"
#include 

using namespace std;
using namespace cv;

#define pi 3.1415926

int main()
{
    string Img_name("4.jpg");
    Mat Img;
    Img=imread(Img_name);

    Mat Img_out(Img.size(), CV_8UC3);

    int width=Img.cols;
    int height=Img.rows;

    float rNW=1.0;     float gNW=0.0;    float bNW=0.0;
    float rNE=1.0;     float gNE=1.0;    float bNE=0.0;
    float rSW=0.0;     float gSW=0;      float bSW=1.0;
    float rSE=0.0;     float gSE=1.0;    float bSE=0.0;

    float fx, fy;
    float p, q, r, g, b;

    for (int y=0; y(y, x)[0]=b*255.0;
            Img_out.at(y, x)[1]=g*255.0;
            Img_out.at(y, x)[2]=r*255.0;

        }
    }

    Show_Image(Img_out, "out");
    cout<<"All is well"<
#include 

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);

}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved