python Pil byteio轉換
讀取需要1ms不到,
轉換byteio,BMP17ms,PNG1百多ms,Jpeg需要25ms
這個還能還原回來
from PIL import Image
def a():
path='d:/1.jpg'
for i in range(10):
start=time.time()
roiImg=Image.open(path)
read_time=time.time()-start
start = time.time()
imgByteArr = io.BytesIO()
roiImg.save(imgByteArr, format='BMP')
# roiImg.save(imgByteArr, format='Jpeg')
# imgByteArr = imgByteArr.getvalue()
print('pil time',read_time,time.time()-start)
start = time.time()
img=Image.open(imgByteArr)
print('read io time', time.time() - start)
pil time 0.01399993896484375 0.01900196075439453
read io time 0.0
pil time 0.0009675025939941406 0.017029523849487305
read io time 0.0
pil time 0.0 0.018001794815063477
read io time 0.000997781753540039
pil time 0.0 0.017999887466430664
read io time 0.0
pil time 0.0010001659393310547 0.01703047752380371
read io time 0.0010001659393310547
pil time 0.0 0.017999887466430664
read io time 0.0009694099426269531
pil time 0.0 0.019000530242919922
read io time 0.0
pil time 0.0009999275207519531 0.01799941062927246
read io time 0.0
pil time 0.0010330677032470703 0.017968416213989258
read io time 0.0
pil time 0.0009996891021728516 0.018031597137451172
read io time 0.0
相關文章
- python base64 編解碼,轉換成Opencv,PIL.Image圖片格式PythonOpenCV
- python pil resize 用法Python
- python--安裝PILPython
- Python影像處理庫——PILPython
- python PIL 影象處理操作Python
- PIL影像轉torch的tensor
- Python PIL圖片資料操作Python
- 基於Python PIL實現簡單圖片格式轉化器Python
- python PIL 開啟\顯示\儲存影像Python
- [Python] 各種轉換Python
- PIL基礎
- python中無法引入pil怎麼解決Python
- Python PIL模組隨機生成中文驗證碼Python隨機
- python opencv轉換bytesioPythonOpenCV
- python str dict list 轉換Python
- python 進位制轉換Python
- 【python】進位制轉換Python
- Python 輕量化簡繁轉換Python
- python資料型別轉換Python資料型別
- python中的型別轉換Python型別
- Python的OpenCV轉換影像大小PythonOpenCV
- Bycharm如何安裝PIL
- python hex轉ascii轉換Python程式碼的簡單方法PythonASCII
- 將json資料轉換為Python字典將json資料轉換為Python字典JSONPython
- python實現字串轉換整數Python字串
- python字串轉換為日期時間Python字串
- Python中各進位制轉換Python
- Python數字轉換中文大寫Python
- python將tif投影轉換至basemapPython
- Python資料型別轉換操作Python資料型別
- Python 字元編碼轉換祕訣Python字元
- Python通用資料格式轉換工具Python
- Python的時間轉換 【例項】Python
- python 中字串大小寫轉換薦Python字串
- Python中CSV讀取和轉換Python
- PIL派鏈質押挖礦系統開發原理丨PIL派鏈原始碼丨現成PIL派鏈開發原始碼
- PIL派鏈開發丨PIL質押挖礦系統開發技術丨PIL派鏈開發技術示例
- Python pytorch 座標系變換與維度轉換PythonPyTorch