当前位置:   article > 正文

Opencv学习(15)—warpPerspective()

warpperspective

理论

在这里插入图片描述
在这里插入图片描述

warpPerspective()函数

主要作用:对图像进行透视变换,就是变形

void cv::warpPerspective	(	InputArray 	src,
OutputArray 	dst,
InputArray 	M,
Size 	dsize,
int 	flags = INTER_LINEAR,
int 	borderMode = BORDER_CONSTANT,
const Scalar & 	borderValue = Scalar() 
)	
	
Python:
dst	=	cv.warpPerspective(	src, M, dsize[, dst[, flags[, borderMode[, borderValue]]]]	)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

参数:
int flags=INTER_LINEAR:输出图像的插值方法
int borderMode=BORDER_CONSTANT:图像边界的处理方式
const Scalar& borderValue=Scalar():边界的颜色设置,一般默认是0

实践

/****************************
 * 实现虚拟广告牌的效果。
 * 提供两张图,一张是笑脸图,另外一张是带广告牌的原图,请用单应矩阵实现将原图中广告牌替换为提供的笑脸图的效果。
 * 利用OpenCV函数,通过鼠标点击来选择要替换的广告牌的四个顶点。
****************************/

#include <opencv2/opencv.hpp>

using namespace cv;
using namespace std;

struct userdata{
    Mat im;
    vector<Point2f> points;
};

void mouseHandler(int event, int x, int y, int flags, void* data_ptr)
{
    if  ( event == EVENT_LBUTTONDOWN )
    {
        userdata *data = (userdata *) data_ptr;
        circle(data->im, Point(x,y),3,Scalar(0,255,255), 5, CV_AA);
        imshow("Image", data->im);
        if (data->points.size() < 4)
        {
            data->points.push_back(Point2f(x,y));
        }
    }

}

int main( int argc, char** argv)
{

    // Read in the image.
    //Mat im_src = imread("first-image.jpg");
    Mat im_src = imread("/home/xiaohu/learn_SLAM/zuoye12/homography_matrix/xiaolian.png");
    Size size = im_src.size();

    // Create a vector of points.
    vector<Point2f> pts_src;
    pts_src.push_back(Point2f(0,0));
    pts_src.push_back(Point2f(size.width - 1, 0));
    pts_src.push_back(Point2f(size.width - 1, size.height -1));
    pts_src.push_back(Point2f(0, size.height - 1 ));

    // Destination image
    //Mat im_dst = imread("times-square.jpg");
    Mat im_dst = imread("/home/xiaohu/learn_SLAM/zuoye12/homography_matrix/ad.jpg");

    // Set data for mouse handler
    Mat im_temp = im_dst.clone();
    userdata data;
    data.im = im_temp;

    //show the image
    imshow("Image", im_temp);

    cout << "Click on four corners of a billboard and then press ENTER" << endl;
    //set the callback function for any mouse event
    setMouseCallback("Image", mouseHandler, &data);
    waitKey(0);

    // ----------  开始你的代码  --------------
    // 计算原图四个角点和目标图区域对应角点的 Homography
    Mat Homography=findHomography(pts_src,data.points);
    // 用H对原图做变换
    warpPerspective(im_src,im_temp,Homography,im_temp.size());

    // 提取鼠标点击的四个角点
    Point pts_dst[4];
    for(int i=0;i<4;i++)
    {
        pts_dst[i]=data.points[i];
    }
    // 把目标图中对应区域像素值设置为0
    fillConvexPoly(im_dst,pts_dst,4,Scalar(0),CV_AA);
    // 把原图叠加到目标图上
    im_dst = im_dst + im_temp;
    // ----------  结束你的代码  --------------
    
    // Display image.
    imshow("Image", im_dst);
    imwrite("../Image.jpg",im_dst);
    waitKey(0);

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/153395
推荐阅读
相关标签
  

闽ICP备14008679号