美文网首页matlab学习
matlab 根据相机内参批量处理反畸变

matlab 根据相机内参批量处理反畸变

作者: Kerwin_H | 来源:发表于2019-06-20 15:41 被阅读0次

    %批量反畸变

    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

    相关文章

      网友评论

        本文标题:matlab 根据相机内参批量处理反畸变

        本文链接:https://www.haomeiwen.com/subject/krkjqctx.html