c++ opencv对图像进行畸变矫正

2022/3/29 22:26:45

本文主要是介绍c++ opencv对图像进行畸变矫正,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

已知图像内参和畸变系数

// undistort
// OpenCV camera model.
// CamParam:   fx, fy, cx, cy, k1, k2, p1, p2
void distort_image(const string & img_path, vector<double> &CamParam){
    Mat undistort_img = imread(img_path);
    string img_name = img_path.substr(img_path.find_last_of("/")+1);
    cout<<"image_name:"<<img_name<<endl;
    double fx = CamParam[0];
    double fy = CamParam[1];
    double cx = CamParam[2];
    double cy = CamParam[3];
    double k1 = CamParam[4];
    double k2 = CamParam[5];
    double p1 = CamParam[6];
    double p2 = CamParam[7];

    cv::Mat cv_cam_matrix_ = (cv::Mat_<double>(3, 3) << fx, 0, cx, 0, fy, cy, 0, 0, 1);
    cv::Mat cv_dist_params_ = (cv::Mat_<float>(4, 1) << k1, k2, p1, p2);

    Mat distort_img;
    cv::undistort(undistort_img, distort_img, cv_cam_matrix_, cv_dist_params_, noArray());
    cv::imwrite("../output/"+img_name, distort_img);

}

 



这篇关于c++ opencv对图像进行畸变矫正的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程