zoukankan      html  css  js  c++  java
  • python 图像处理(6):图像的形变与缩放

    图像的形变与缩放,使用的是skimage的transform模块,函数比较多,功能齐全。

    1、改变图片尺寸resize

    函数格式为:

    skimage.transform.resize(imageoutput_shape)

    image: 需要改变尺寸的图片

    output_shape: 新的图片尺寸

    复制代码
    from skimage import transform,data
    import matplotlib.pyplot as plt
    img = data.camera()
    dst=transform.resize(img, (80, 60))
    plt.figure('resize')
    
    plt.subplot(121)
    plt.title('before resize')
    plt.imshow(img,plt.cm.gray)
    
    plt.subplot(122)
    plt.title('before resize')
    plt.imshow(dst,plt.cm.gray)
    
    plt.show()
    复制代码

    将camera图片由原来的512*512大小,变成了80*60大小。从下图中的坐标尺,我们能够看出来:

    2、按比例缩放rescale

    函数格式为:

    skimage.transform.rescale(image, scale[, ...])

    scale参数可以是单个float数,表示缩放的倍数,也可以是一个float型的tuple,如[0.2,0.5],表示将行列数分开进行缩放

    from skimage import transform,data
    img = data.camera()
    print(img.shape)  #图片原始大小 
    print(transform.rescale(img, 0.1).shape)  #缩小为原来图片大小的0.1倍
    print(transform.rescale(img, [0.5,0.25]).shape)  #缩小为原来图片行数一半,列数四分之一
    print(transform.rescale(img, 2).shape)   #放大为原来图片大小的2倍

    结果为:

    (512, 512)
    (51, 51)
    (256, 128)
    (1024, 1024)

    3、旋转 rotate

    skimage.transform.rotate(image, angle[, ...],resize=False)

    angle参数是个float类型数,表示旋转的度数

    resize用于控制在旋转时,是否改变大小 ,默认为False

    复制代码
    from skimage import transform,data
    import matplotlib.pyplot as plt
    img = data.camera()
    print(img.shape)  #图片原始大小
    img1=transform.rotate(img, 60) #旋转90度,不改变大小 
    print(img1.shape)
    img2=transform.rotate(img, 30,resize=True)  #旋转30度,同时改变大小
    print(img2.shape)   
    
    plt.figure('resize')
    
    plt.subplot(121)
    plt.title('rotate 60')
    plt.imshow(img1,plt.cm.gray)
    
    plt.subplot(122)
    plt.title('rotate  30')
    plt.imshow(img2,plt.cm.gray)
    
    plt.show()
    复制代码

    显示结果:

    4、图像金字塔

    以多分辨率来解释图像的一种有效但概念简单的结构就是图像金字塔。图像金字塔最初用于机器视觉和图像压缩,一幅图像的金字塔是一系列以金字塔形状排列的分辨率逐步降低的图像集合。金字塔的底部是待处理图像的高分辨率表示,而顶部是低分辨率的近似。当向金字塔的上层移动时,尺寸和分辨率就降低。

    在此,我们举一个高斯金字塔的应用实例,函数原型为:

    skimage.transform.pyramid_gaussian(image, downscale=2)
    downscale控制着金字塔的缩放比例
    复制代码
    import numpy as np
    import matplotlib.pyplot as plt
    from skimage import data,transform
    
    image = data.astronaut()  #载入宇航员图片
    rows, cols, dim = image.shape  #获取图片的行数,列数和通道数
    pyramid = tuple(transform.pyramid_gaussian(image, downscale=2))  #产生高斯金字塔图像
    #共生成了log(512)=9幅金字塔图像,加上原始图像共10幅,pyramid[0]-pyramid[1]
    
    composite_image = np.ones((rows, cols + cols / 2, 3), dtype=np.double)  #生成背景
    
    composite_image[:rows, :cols, :] = pyramid[0]  #融合原始图像
    
    i_row = 0
    for p in pyramid[1:]:
        n_rows, n_cols = p.shape[:2]
        composite_image[i_row:i_row + n_rows, cols:cols + n_cols] = p  #循环融合9幅金字塔图像
        i_row += n_rows
    
    plt.imshow(composite_image)
    plt.show()
    复制代码

    上右图,就是10张金字塔图像,下标为0的表示原始图像,后面每层的图像行和列变为上一层的一半,直至变为1

    除了高斯金字塔外,还有其它的金字塔,如:

    skimage.transform.pyramid_laplacian(image, downscale=2):

  • 相关阅读:
    HDU 5583 Kingdom of Black and White 水题
    HDU 5578 Friendship of Frog 水题
    Codeforces Round #190 (Div. 2) E. Ciel the Commander 点分治
    hdu 5594 ZYB's Prime 最大流
    hdu 5593 ZYB's Tree 树形dp
    hdu 5592 ZYB's Game 树状数组
    hdu 5591 ZYB's Game 博弈论
    HDU 5590 ZYB's Biology 水题
    cdoj 1256 昊昊爱运动 预处理/前缀和
    cdoj 1255 斓少摘苹果 贪心
  • 原文地址:https://www.cnblogs.com/presleyren/p/14708438.html
Copyright © 2011-2022 走看看