在 C++ 中使用 OpenCV 对图像中的对象进行扭曲透视

本文介绍了如何在C++中利用OpenCV对图像中的对象进行扭曲透视处理。通过读取图像,进行预处理(如灰度转换、平滑、边缘检测),然后检测和提取轮廓,计算轮廓面积并找到边界框,最后执行扭曲操作。文章提供了一个详细的代码示例,并引用了相关资源。
摘要由CSDN通过智能技术生成

32e3774570535ca7e92418b0afb6133e.jpeg

例子。

你可以在这里找到 github 存储库:https://github.com/okanyenigun/cpp-opencv-warping

代码:

#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/objdetect.hpp>
#include <iostream>

using namespace cv;
using namespace std;

string PATH = "funk.jpg"; //Image Path
int AREA_FILTER = 1000;
Mat imgOrg, imgProc, imgWarp;
vector<Point> initialPoints, docPoints;
int w = 420, h = 596;

Mat preProcessing(Mat img)
{
    cvtColor(img, imgProc, COLOR_BGR2GRAY); // to gray scale
    GaussianBlur(imgProc, imgProc, Size(3,3), 3, 0); // blurring for better canny performance
    Canny(imgProc, imgProc, 25, 75); // edge detection
    Mat kernel = getStructuringElement(MORPH_RECT, Size(3, 3));
    dilate(imgProc, imgProc, kernel);
    return imgProc;
}

vector<Point> getContours(Mat imgDil){
    //detects the biggest rectangle in image
    vector<vector<Point>> contours; //vectors example: {
   {Point(20,30),Point(50,60)},{},{}}
    vector<Vec4i> hierarchy;
    findContours(imgDil,contours,hierarchy,RETR_EXTERNAL,CHAIN_APPROX_SIMPLE); //finding contours
    vector<vector<Point>> conPoly(contours.size());
    vector<Rect> boundRect(contours.size());
    vector<Point> biggest;
    int maxArea=0;
    for (int i=0;i<contours.size();i++){
        int 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值