首頁 > 軟體

opencv實現影象平移

2022-08-01 18:02:33

本文範例為大家分享了opencv實現影象平移的具體程式碼,供大家參考,具體內容如下

影象平移指的是沿水平方向或垂直方向進行影象的移動。

平移變換公式:

對於原始影象而言,正變換矩陣:

 

 對於目標影象而言,逆變換矩陣:        

程式碼:

#include<opencv2/imgproc.hpp>
#include<opencv2/highgui.hpp>
#include<opencv2/core.hpp>
#include<iostream>
#include<stdlib.h>
using namespace std;
using namespace cv;
 
Mat imgTranslation1(Mat& src, int xOffset, int yOffset);
Mat imgTranslation2(Mat& src, int xOffset, int yOffset);
int main()
{
    Mat src = imread("C:\Users\H\Desktop\niao.bmp");
    if (src.empty())
    {
        cout << "請檢查影象是否存在..." << endl;
        return -1;
    }
    pyrDown(src, src);
    cout << "原圖尺寸trows:" << src.rows << "tcols: " << src.cols << endl;
 
    int xOffset = 50, yOffset = 80;
    
    Mat dst1 = imgTranslation1(src, xOffset, yOffset);
    imshow("dst1", dst1);
    cout << "平移不改變尺寸trows: " << dst1.rows << "tcols: " << dst1.cols << endl;
    
    Mat dst2 = imgTranslation2(src, xOffset, yOffset);
    imshow("dst2", dst2);
    cout << "平移改變尺寸trows: " << dst2.rows << "tcols: " << dst2.cols << endl;
    waitKey(0);
    system("pause");
    return 0;
}
 
影象的平移 ,大小不變
Mat imgTranslation1(Mat& src, int xOffset, int yOffset)
{
    int nrows = src.rows;
    int ncols = src.cols;
    Mat dst(src.size(), src.type());
    for (int i = 0; i < nrows; i++)
    {
        for (int j = 0; j < ncols; j++)
        {
            對映變換
            int x = j - xOffset;
            int y = i - yOffset;
            邊界判斷
            if (x >= 0 && y >= 0 && x < ncols && y < nrows)
            {
                dst.at<Vec3b>(i, j) = src.ptr<Vec3b>(y)[x];
            }
        }
    }
    return dst;
}
//影象平移大小改變
Mat imgTranslation2(Mat& src, int xOffset, int yOffset)
{
    int nrows = src.rows + abs(yOffset);
    int ncols = src.cols + abs(xOffset);
    Mat dst(nrows, ncols, src.type());
    for (int i = 0; i < nrows; i++)
    {
        for (int j = 0; j < ncols; j++)
        {
            int x = j - xOffset;
            int y = i - yOffset;
            if (x >= 0 && y >= 0 && x < ncols && y < nrows)
            {
                dst.at<Vec3b>(i, j) = src.ptr<Vec3b>(y)[x];
            }
        }
    }
    return dst;
}

結果展示:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com