%批量反畸变
file_path = 'F:\\calib_img0\';% 图像文件夹路径
img_path_list = dir(strcat(file_path,'*.png'));%获取该文件夹中所有.jpg格式的图像
img_num = length(img_path_list);%获取图像总数
if img_num > 0 %有满足条件的图像
for pn = 1:img_num %逐一读取图像
image_name = img_path_list(pn).name;% 图像名
img_origin = imread(strcat(file_path,image_name));%读取图像
fprintf('%d %s\n',pn,strcat(file_path,image_name));% 显示正在处理的图像名
I=imread(strcat(file_path,image_name));
J=undistortImage(I,cameraParams);
%S = distortion002(imread(strcat(file_path,image_name)));
imwrite(J,image_name);
%%此处添加具体的图像处理程序
end
end
网友评论