溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)

發(fā)布時間:2023-05-04 16:30:53 來源:億速云 閱讀:145 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Python怎么對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python怎么對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)”吧!

    對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)

    首先我們的原始圖片是10張網(wǎng)上下載尺寸不一的圖片,如下:

    Python怎么對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)

    操作1:resize 將圖片resize到相同尺寸(320,240)

    from PIL import Image
    import torchvision.transforms as transforms
    #使用PIL庫讀入圖片并進行resize
    def ResizeImage():
        if not os.path.exists(rdir):
            os.makedirs(rdir)
        for i in range(10):
            im = Image.open(dir+str(i)+".jpg")
            im = im.resize((320,240),Image.BILINEAR)  #第一個參數(shù)為想要的size,第二個參數(shù)為插值方法,雙線性插值這里用的是
            im.save('{}/{}.jpg'.format(rdir, i))

    操作2:剪裁(包括圍繞中心剪裁和隨機剪裁)

    #圖像隨機剪裁和中心剪裁
    def crop(lib):
        for i in range(10):
            img = Image.open(lib+"/"+str(i)+".jpg")
            CenterCrop = transforms.CenterCrop((240,320))   #中心裁剪
            cropped_image = CenterCrop(img)  #PIL.Image.Image
            # im=np.array(cropped_image)  #可以將PIL.Image.Image轉(zhuǎn)成ndarry
            #cropped_image.show()    #將圖片顯示
            cropped_image.save('{}/cen_crop{}.jpg'.format(rdir, i))
            RandomCrop = transforms.RandomCrop(size=(240, 320))  #隨機剪裁
            random_image = RandomCrop(img)
            random_image.save('{}/rand_crop{}.jpg'.format(rdir, i))

    操作3:隨機旋轉(zhuǎn)

    #隨機旋轉(zhuǎn)
    def random_rotation(lib):
        for i in range(10):
            img = Image.open(lib+"/"+str(i)+".jpg")
            RR = transforms.RandomRotation(degrees=(10, 80))   #degrees為隨機旋轉(zhuǎn)的角度
            rr_image = RR(img)
            rr_image.save('{}/rand_rotation{}.jpg'.format(rdir, i))

    操作4:翻轉(zhuǎn)

    #圖片依概率翻轉(zhuǎn),p為翻轉(zhuǎn)的概率
    def horizontal_flip(lib):
        for i in range(10):
            img = Image.open(lib+"/"+str(i)+".jpg")
            HF = transforms.RandomHorizontalFlip(p=1.0)  #p為概率,缺省時默認0.5
            hf_image = HF(img)
            hf_image.save('{}/hori_flip{}.jpg'.format(rdir, i))

    下面展示一下操作后的圖片:

    Python怎么對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)

    從上到下每行依次為resize、中心裁剪、翻轉(zhuǎn)、隨機裁剪和隨機旋轉(zhuǎn)的結(jié)果

    單張圖像變換大小——img.resize()

    這個是一段學過的簡單程序,可以改變圖像的大小,jpg,png都可以的:

    #encoding=utf-8
    #author: walker
    #date: 2014-05-15
    #function: 更改圖片尺寸大小
    from PIL import Image
    '''
    filein: 輸入圖片
    fileout: 輸出圖片
    width: 輸出圖片寬度
    height:輸出圖片高度
    type:輸出圖片類型(png, gif, jpeg...)
    '''
    def ResizeImage(filein, fileout, width, height, type):
      img = Image.open(filein)
      out = img.resize((width, height),Image.ANTIALIAS) #resize image with high-quality
      out.save(fileout, type)
    if __name__ == "__main__":
      filein = r'0.jpg'
      fileout = r'testout.png'
      width = 6000
      height = 6000
      type = 'png'
      ResizeImage(filein, fileout, width, height, type)

    這個函數(shù)img.resize((width, height),Image.ANTIALIAS)

    第二個參數(shù):

    • Image.NEAREST :低質(zhì)量

    • Image.BILINEAR:雙線性

    • Image.BICUBIC :三次樣條插值

    • Image.ANTIALIAS:高質(zhì)量

    到此,相信大家對“Python怎么對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關內(nèi)容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!

    向AI問一下細節(jié)

    免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI