主頁 > 知識庫 > python圖像處理基本操作總結(jié)(PIL庫、Matplotlib及Numpy)

python圖像處理基本操作總結(jié)(PIL庫、Matplotlib及Numpy)

熱門標(biāo)簽:孝感營銷電話機器人效果怎么樣 聊城語音外呼系統(tǒng) ai電銷機器人的優(yōu)勢 商家地圖標(biāo)注海報 南陽打電話機器人 騰訊地圖標(biāo)注沒法顯示 打電話機器人營銷 海外網(wǎng)吧地圖標(biāo)注注冊 地圖標(biāo)注自己和別人標(biāo)注區(qū)別

一、PIL庫對圖像的基本操作

1、讀取圖片

PIL網(wǎng)上有很多介紹,這里不再講解。直接操作,讀取一張圖片,將其轉(zhuǎn)換為灰度圖像,并打印出來。

from  PIL  import Image
import matplotlib.pyplot as plt
pil_im = Image.open("empire.jpeg")
pil_image = pil_im.convert("L")
plt.gray()
plt.imshow(pil_image)
plt.show()

輸出如下所示:

2、轉(zhuǎn)換圖片格式

PIL可以將圖像保存為多種格式,下面將PNG格式文件保存為JPG格式:

from PIL import Image
import glob
import os
filelist = glob.glob("E:/pythonProject1/filelist/*.png")
for infile in filelist:
    outfile = os.path.splitext(infile)[0]+'.jpg'
 
    if infile  != outfile:
        try:
            Image.open(infile).save(outfile)
        except IOError:
            print("cannot convert", infile)

輸出結(jié)果如下所示:

3、輸出文件夾中所有圖片的文件名列表

import os
def get_imlist(path):
    """返回目錄中所有JPG圖像的文件名列表"""
    return [os.path.join(path,f)for f in os.listdir(path) if f.endswith('.jpg')]
print(get_imlist("E:/pythonProject1/filelist/"))

輸出為文件名列表

二、Matplotlib

1、繪制圖像、點和線

from PIL import Image
from pylab import *
 
#讀取圖像到數(shù)組中
im = array(Image.open("empire.jpeg"))
 
#繪制圖像
imshow(im)
 
#一些點
x = [100, 100, 400, 400]
y = [200, 500, 200, 500]
 
#使用紅色星狀標(biāo)記繪制點
plot(x, y)#默認為藍色實線
# plot(x, y, 'r*')#紅色星狀標(biāo)記
# plot(x, y, 'go-')#帶有圓圈標(biāo)記的綠線
# plot(x, y, 'ks')#帶有正方形標(biāo)記的黑色虛線
 
#繪制連接前三個點的線
plot(x[:3], y[:3])
axis('off')
 
#添加標(biāo)題,顯示繪制的圖像
titles = ['empire']
plt.title = titles
show()

上面的代碼首先繪制出原始圖像,然后在 x 和 y 列表中給定點的 x 坐標(biāo)和 y 坐標(biāo)上繪制出紅色星狀標(biāo)記點,最后在兩個列表表示的前兩個點之間繪制一條線段。該例子的繪制結(jié)果下圖:

2、圖像輪廓和直方圖

繪制輪廓需要對每個坐標(biāo) [x, y] 的像素值施加同一個閾值,所以首先需要將圖像灰度化,這里用 PIL 的 convert() 方法將圖像轉(zhuǎn)換成灰度圖像。圖像的直方圖用來表征該圖像像素值的分布情況。

from PIL import Image
from pylab import *
 
# 讀取圖像到數(shù)組中
im = array(Image.open("empire.jpeg").convert('L'))
 
#創(chuàng)建一個圖像
figure()
#不使用顏色信息
gray()
#在原點的左上角顯示輪廓圖像
contour(im, origin = 'image')#檢測圖像輪廓
axis('equal')
axis('off')
show()
#新建一個圖像
figure
hist(im.flatten(), 128)#繪制圖像直方圖
show()

圖像輪廓圖輸出如下所示:

輸出圖像直方圖如下所示:

3、交互式標(biāo)注

在一幅圖像中標(biāo)記一些點,或者標(biāo)注一些訓(xùn)練數(shù)據(jù)。PyLab 庫中的 ginput() 函數(shù)就可以實現(xiàn)交互式標(biāo)注。在圖像點擊三次,則程序會自動將這3個點的坐標(biāo)點[x, y]保存到x列表里。

from PIL import Image
from pylab import *
 
im = array(Image.open("empire.jpeg"))
imshow(im)
print("please click 3 points")
x = ginput(3)
print("you clicked",x)
show()

三、Numpy

1、圖像數(shù)組表示

對于圖像數(shù)據(jù),下面的例子闡述了這一點

from PIL import Image
import numpy as np
 
im = np.array(Image.open("empire.jpeg"))
print(im.shape,im.dtype)

輸出為:
(1024, 683, 3) uint8

 每行的第一個元組表示圖像數(shù)組的大?。ㄐ?、列、顏色通道),緊接著的字符串表示數(shù)組元素的數(shù)據(jù)類型。因為圖像通常被編碼成無符號八位整數(shù)(uint8),載入圖像并將其轉(zhuǎn)換到數(shù)組中,數(shù)組的數(shù)據(jù)類型為“uint8”。

2、灰度變換

對圖像進行灰度變換,如下所示:

from PIL import Image
import numpy as np
 
im = np.array(Image.open("empire.jpeg"))
print(im.shape,im.dtype)
 
from PIL import Image
from matplotlib.pylab import plt
from numpy import *
 
im1 = array(Image.open('empire.jpeg').convert('L'))
im2 = 255 - im1 #對圖像進行反向處理
im3 = (100.0/255) * im1 + 100 #將圖像值變換到100-200之間
im4 = 255.0 * (im1/255) ** 2 #對圖像像素值求平方后得到的圖像
 
images = [im1, im2, im3, im4]
titles = ["f(x) = x", "f(x) = 255 - x", "f(x) = (100/255)*x +100", "f(x) = 255*(x/255)^2"]
#輸出圖中的最大像素值和最小像素值
print(int(im1.min()),int(im1.max()))
print(int(im2.min()),int(im2.max()))
print(int(im3.min()),int(im3.max()))
print(int(im4.min()),int(im4.max()))
 
for i in range(4):
    plt.subplot(2, 2, i+1)#2行2列,按編號順序排列
    plt.imshow(images[i])#顯示圖像
    plt.title(titles[i])#顯示標(biāo)題
    plt.gray()
    # plt.xticks([])
    # plt.yticks([])
    plt.axis('equal')
    plt.axis('off')
plt.show()

輸出接入如下所示:

總結(jié)

到此這篇關(guān)于python圖像處理基本操作的文章就介紹到這了,更多相關(guān)python圖像處理操作內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 手把手帶你了解Python數(shù)據(jù)分析--matplotlib
  • Python的Matplotlib庫圖像復(fù)現(xiàn)學(xué)習(xí)
  • Python中matplotlib如何改變畫圖的字體
  • Python繪圖之詳解matplotlib
  • python數(shù)據(jù)可視化之matplotlib.pyplot基礎(chǔ)以及折線圖
  • Python 數(shù)據(jù)科學(xué) Matplotlib圖庫詳解
  • python中Matplotlib繪制直線的實例代碼
  • 教你用Python matplotlib庫制作簡單的動畫
  • 用Python的繪圖庫(matplotlib)繪制小波能量譜
  • python通過Matplotlib繪制常見的幾種圖形(推薦)

標(biāo)簽:揚州 迪慶 楊凌 牡丹江 聊城 南寧 六盤水 撫州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python圖像處理基本操作總結(jié)(PIL庫、Matplotlib及Numpy)》,本文關(guān)鍵詞  python,圖像處理,基本操作,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python圖像處理基本操作總結(jié)(PIL庫、Matplotlib及Numpy)》相關(guān)的同類信息!
  • 本頁收集關(guān)于python圖像處理基本操作總結(jié)(PIL庫、Matplotlib及Numpy)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章