Matlab工具箱标定和校正鱼眼镜头
程序员文章站
2022-04-17 22:03:01
...
鱼眼镜头校正和普通相机校正,在matlab工具箱中有所区别
一 工具箱操作
二 用标定结果参数 校正其他图像用
用undistortFisheyeImage函数
%利用matlab工具箱标定鱼眼之后,导出标定参数到工作区,然后运行程序
result = undistortFisheyeImage(img, cameraParams.Intrinsics);
subplot(1,2,1);imshow(img);title('原始图像')
subplot(1,2,2);imshow(result);title('校正图像')
推荐阅读