图像处理(一)——使用matlab放缩图像

图像放缩:使用双线性插值法和双三次插值法

  1. Introduction

    In this experiment, matalb is used to zooming and shrinking an image, to find out the difference between source image and processed image. Firstly zoom the image and then shrink the zoomed image to original size, compare the processed image and the original one, see the difference.

  2. Experimental Settings

    Use a highly textured image as input, the function imresize() in matlab is used.

  3. Results and Discussion

    1. Experiment 1: Enlarge the image by 2.6 along rows, shrunk by 1.3 along columns

       

       

      Figure 1

    2. Experiment 2: Inverse transforming the resulting images in Figure 1

       

       

      Figure 2

    3. Experiment 3: The difference between the original input image and the resulting images in Figure 2

      Figure 3

      The dark pixels of Figure 3 show the difference between the original input image and the resulting images in Figure 2, the bright pixels mean the two images are almost the same.

      The difference between the two pictures in Figure 3 can be seen, the picture processed by bilinear changes a lot from the source image, so we can think that process image by bicubic is more accurate.

    4. source code(matlab代码)
      1.   process_by_bicubic.m
        clc   % 清除命令窗口的内容
        clear   % 清除工作空间的所有变量
        close all   % 关闭所有的Figure窗口
        
        I = imread('01.jpg');   % 读取图片
        [m,n]=size(I);     
        n = n / 3;      %图片的长宽
        figure(1);      % 第1张图:显示原图和处理后的图像
        subplot(1,2,1);
        imshow(I,[]);   % 显示原始图形
        title('source picture');  % 为画好的图加上标题
        
        B=imresize(I, [2.6 * m, n / 1.3], 'bicubic');    %使用双三次插值
        subplot(1,2,2);
        imshow(B,[]);   % 显示B图形
        title('2.6 * rows, columns / 1.3 by bicubic');  % 为画好的图加上标题
        
        %***********************************************************************
        figure(2);      % 第2张图:显示原图和放大后又恢复原大小的图像
        subplot(1,2,1);
        imshow(I,[]);   % 显示原始图形
        title('source picture');  % 为画好的图加上标题
        
        C=imresize(B, [m, n], 'bicubic');    %使用双三次插值,恢复原分辨率
        subplot(1,2,2);
        imshow(C,[]);   % 显示C图形
        title('from inverse by bicubic');  % 为画好的图加上标题
        
        %***********************************************************************
        figure(3);      % 第3张图:显示原图和恢复后的图有什么不同
        D = C - I;      % D可视为C和I的不同,但求D的负片可以使结果更易观察
        %imshow(D,[]);   % 显示D图形
        %title('Difference between original and resulting images in Figure 2');  % 为画好的图加上标题
        
        E=imadjust(D,[0 1],[1 0]);
        imshow(E,[]);   % 显示E图形
        title('Difference between original and resulting images in Figure 2 (by bicubic)');  % 为画好的图加上标题

         

      2. process_by_bilinear.m
        clc   % 清除命令窗口的内容
        clear   % 清除工作空间的所有变量
        close all   % 关闭所有的Figure窗口
        
        I = imread('01.jpg');   % 读取图片
        [m,n]=size(I);     
        n = n / 3;      %图片的长宽
        figure(1);      % 第1张图:显示原图和处理后的图像
        subplot(1,2,1);
        imshow(I,[]);   % 显示原始图形
        title('source picture');  % 为画好的图加上标题
        
        B=imresize(I, [2.6 * m, n / 1.3], 'bilinear');    %使用双线性插值
        subplot(1,2,2);
        imshow(B,[]);   % 显示B图形
        title('2.6 * rows, columns / 1.3 by bilinear');  % 为画好的图加上标题
        
        %***********************************************************************
        figure(2);      % 第2张图:显示原图和放大后又恢复原大小的图像
        subplot(1,2,1);
        imshow(I,[]);   % 显示原始图形
        title('source picture');  % 为画好的图加上标题
        
        C=imresize(B, [m, n], 'bilinear');    %使用双线性插值,恢复原分辨率
        subplot(1,2,2);
        imshow(C,[]);   % 显示C图形
        title('from inverse by bilinear');  % 为画好的图加上标题
        
        %***********************************************************************
        figure(3);      % 第3张图:显示原图和恢复后的图有什么不同
        D = C - I;      % D可视为C和I的不同,但求D的负片可以使结果更易观察
        %imshow(D,[]);   % 显示D图形
        %title('Difference between original and resulting images in Figure 2');  % 为画好的图加上标题
        
        E=imadjust(D,[0 1],[1 0]);
        imshow(E,[]);   % 显示E图形
        title('Difference between original and resulting images in Figure 2 (by bilinear)');  % 为画好的图加上标题

         

转载于:https://www.cnblogs.com/yongheng20/p/4944814.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值