PIL Image
from PIL import Image
import numpy as np
img = Image.open('/temp_disk/xs/sun/train/image/0.jpg')
print(img.format) # JPEG
print(img.mode) # RGB
print(img.size)
print(img.info) # a dict
img = np.array(img)
print(np.min(img)) # 3
print(np.max(img)) # 255
print()
depth = Image.open('/temp_disk/xs/sun/train/depth/0.png')
print(depth.format) # PNG
print(depth.mode) # I
print(depth.size)
print(depth.info)
depth = np.array(depth)
print(np.min(depth)) # 8784
print(np.max(depth)) # 52456
JPEG
RGB
(730, 530)
{'jfif': 257, 'jfif_version': (1, 1), 'jfif_unit': 0, 'jfif_density': (1, 1)}
3
255
PNG
I
(730, 530)
{}
8784
52456
相關文章
- PIL.Image convert to numpy array
- 002.00 圖片處理 PIL.Image
- python base64 編解碼,轉換成Opencv,PIL.Image圖片格式PythonOpenCV
- PIL基礎
- python報錯ImportError: cannot import name ‘Image‘ from ‘PIL‘ 的時候大多數情況下是由於PIL版本和當前python的版本出現了不相容PythonImportError
- python pil resize 用法Python
- python 下,如何快速批次的把 numpy.ndarray 格式的圖片轉成 PIL 庫的 Image 格式的圖片Python
- Bycharm如何安裝PIL
- python Pil byteio轉換Python
- PIL派鏈質押挖礦系統開發原理丨PIL派鏈原始碼丨現成PIL派鏈開發原始碼
- PIL派鏈開發丨PIL質押挖礦系統開發技術丨PIL派鏈開發技術示例
- PIL影像轉torch的tensor
- Python影像處理庫——PILPython
- WPF Image Image clip EllipseGeometry
- Image
- WPF Image add watermark and save marked image as jpg
- Image Manipulation
- docker imageDocker
- python PIL 開啟\顯示\儲存影像Python
- 【326】PIL 截圖及圖片識別
- WPF Image automatically display image via System.Timer.Timer
- Medical Image Reader
- Image onload 事件事件
- Flutter元件ImageFlutter元件
- SVG <image>元素SVG
- image003
- image001
- image005
- image002
- image004
- image010
- image006
- python中無法引入pil怎麼解決Python
- docker建立volume 指定volume 匯出image 匯入imageDocker
- Python PIL模組隨機生成中文驗證碼Python隨機
- Image server for Incus and LXCServer
- WPF CheckBox ToolTip Image
- public-image-mirror