1. 程式人生 > >相機標定與校正----方法一:CameraCalibrator需多張照片

相機標定與校正----方法一:CameraCalibrator需多張照片


匯出cameraParams後進行畸變校正:

I=imread('Image1.tif');

[J,newOrigin] = undistortImage(I,cameraParams);
figure
subplot(1,2,1),imshow(I);

subplot(1,2,2),imshow(J);


參考: