随笔 - 632  文章 - 17  评论 - 54  阅读 - 93万

OpenCV图像旋转(cv::rotate)与镜像(cv::flip)

一、概述

  案例:使用OpenCV实现图像的旋转和镜像操作

  所用函数:这里主要使用到了两个函数

    1.旋转:cv::rotate

    2.镜像:cv::flip  

复制代码
rotate(InputArray src, OutputArray dst, int rotateCode);
src:输入图像
dst:输出图像
rotateCode:

  ROTATE_180,顺时针180°
  ROTATE_90_CLOCKWISE,顺时针90°
  ROTATE_90_COUNTERCLOCKWISE,逆时针90°

flip(InputArray src, OutputArray dst, int flipCode);
src:输入图像
dst:输出图像
flipCode:
  >0表示y轴翻转
  =0表示x轴翻转
  <0表示xy轴同时翻转
复制代码

 

二、代码示例

复制代码
Video_Player_Roate_Flip::Video_Player_Roate_Flip(QWidget *parent)
    : QWidget{parent}
{
    this->setWindowTitle("图片旋转与镜像");
    this->setFixedSize(320,480);
    //选择图片
    QPushButton *chooseImageBtn = new QPushButton(this);
    chooseImageBtn->setText("选择图片");
    connect(chooseImageBtn,&QPushButton::clicked,[=](){//选择图片
        chooseImage();
    });
    //图像旋转
    QRadioButton *rotate1 = new QRadioButton(this);
    rotate1->move(0,chooseImageBtn->y()+chooseImageBtn->height()+5);
    rotate1->setText("顺时针180°");
    QRadioButton *rotate2 = new QRadioButton(this);
    rotate2->move(rotate1->x()+rotate1->width()+5,chooseImageBtn->y()+chooseImageBtn->height()+5);
    rotate2->setText("顺时针90°");
    QRadioButton *rotate3 = new QRadioButton(this);
    rotate3->move(rotate2->x()+rotate2->width()+5,chooseImageBtn->y()+chooseImageBtn->height()+5);
    rotate3->setText("逆时针90°");
    connect(rotate1,&QRadioButton::clicked,[=](){
        showImageRoate(0);
    });
    connect(rotate2,&QRadioButton::clicked,[=](){
        showImageRoate(1);
    });
    connect(rotate3,&QRadioButton::clicked,[=](){
        showImageRoate(2);
    });

    //图像镜像
    QRadioButton *rotate4 = new QRadioButton(this);
    rotate4->move(0,rotate1->y()+rotate1->height()+5);
    rotate4->setText("沿y轴翻转");
    QRadioButton *rotate5 = new QRadioButton(this);
    rotate5->move(rotate4->x()+rotate4->width(),rotate1->y()+rotate1->height()+5);
    rotate5->setText("沿x轴翻转");
    QRadioButton *rotate6 = new QRadioButton(this);
    rotate6->move(rotate5->x()+rotate5->width(),rotate1->y()+rotate1->height()+5);
    rotate6->setText("沿xy轴翻转");
    connect(rotate4,&QRadioButton::clicked,[=](){
        showImageFlip(0);
    });
    connect(rotate5,&QRadioButton::clicked,[=](){
        showImageFlip(1);
    });
    connect(rotate6,&QRadioButton::clicked,[=](){
        showImageFlip(2);
    });
}

void Video_Player_Roate_Flip::chooseImage(){
    path = QFileDialog::getOpenFileName(this,"选择图像","/Users/yangwei/Downloads/","Image File(*.jpg *.jpeg *.png *.bmp)");
    qDebug()<<path;
}

void Video_Player_Roate_Flip::showImageRoate(int type){
    Mat src = imread(path.toStdString().c_str());
    if(src.empty()){
        qDebug()<<"不能为空";
        return;
    }
    imshow("src",src);
    Mat dst;
    switch(type){
    case 0://
        cv::rotate(src,dst,ROTATE_180);//顺时针180°
        break;
    case 1:
        cv::rotate(src,dst,ROTATE_90_CLOCKWISE);//顺时针90°
        break;
    case 2:
        cv::rotate(src,dst,ROTATE_90_COUNTERCLOCKWISE);//逆时针90°
        break;
    }
    imshow("dst",dst);

}

void Video_Player_Roate_Flip::showImageFlip(int type){
    Mat src = imread(path.toStdString().c_str());
    if(src.empty()){
        qDebug()<<"不能为空";
        return;
    }
    imshow("src",src);
    Mat dst;
    switch(type){
    case 0:
        cv::flip(src,dst,1);//y轴翻转
        break;
    case 1:
        cv::flip(src,dst,0);//x轴翻转
        break;
    case 2:
        cv::flip(src,dst,-1);//xy轴翻转
        break;
    }
    imshow("dst",dst);
}
复制代码

 

三、演示图像

 

 

 

posted on   飘杨......  阅读(2628)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
· SQL Server 2025 AI相关能力初探
< 2025年3月 >
23 24 25 26 27 28 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 1 2 3 4 5

点击右上角即可分享
微信分享提示