加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
ningdr.com 提交于 2021-12-30 16:33 . feat: 添加保存矫正图片
#include <iostream>
#include "opencv_undistort.h"
int main(int argc, char** argv) {
spdlog::set_level(spdlog::level::debug);
if (argc != 3) {
spdlog::error("Incorrect, to use this program, the command should like this: ./undistort <inputImagePath> <outputImagePath>");
return 0;
}
std::string path = R"(/mnt/e/workspace-clion/undistort/resources/camera_parameters.yaml)";
casia::OpencvUnDistort unDistort(path);
unDistort.loadImage(std::string(argv[1]));
// unDistort.showOriginImage();
unDistort.UnDistort();
unDistort.saveUnDistort(std::string(argv[2]));
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化