Python剪裁影像中的指定區域
import os
from PIL import Image
import numpy as np
rootimgs = 'D:\paper\\3low_light_image\compare_lowlighr_enchace\enhancement_image\MBLLEN\\'
targetroot = 'D:\paper\\3low_light_image\compare_lowlighr_enchace\enhancement_image\\'
savdir = 'D:\paper\\3low_light_image\compare_lowlighr_enchace\enhancement_image\\'
file_imgs = os.listdir(rootimgs)
for file_img in file_imgs:
imgpath = rootimgs + file_img
targetimg = targetroot + file_img
image = Image.open(imgpath) # 用PIL中的Image.open開啟影像
image_arr = np.array(image) # 轉化成numpy陣列
image_tar = image_arr[:,int(image_arr.shape[1]/3):int(2*image_arr.shape[1]/3),:]
im = Image.fromarray(image_tar)
im.save(targetimg)
剪裁前:
剪裁後:
相關文章
- jQuery列印網頁指定區域jQuery網頁
- Linux中sed命令b選項遮蔽指定的處理區域Linux
- C# 按鈕影像指定本地資源後提示“未能找到任何適合於指定的區域性或非特定區域性的資源”的解決辦法C#
- Python 影像處理 OpenCV (3):影像屬性、影像感興趣 ROI 區域及通道處理PythonOpenCV
- canvas clearRect()清除指定區域內容Canvas
- 跟我學Python影像處理丨獲取影像屬性、興趣ROI區域及通道處理Python
- 如何Super Vectorizer從Mac 上的影像中刪除多餘的顏色區域?Mac
- Python中的全域性變數和區域性變數Python變數
- 隨機生成指定面積單連通區域隨機
- 低光照影像區域級質量推斷
- 給定普通有色影像找到特定區域
- Python中類變數、成員變數、區域性變數的區別Python變數
- WinUI 剪裁釋出中的一個小坑UI
- 基於Vue實現圖片在指定區域內移動Vue
- 使用Map標籤指定點選區域時的相容性問題
- 剪裁圖片
- halcon中將xld輪廓或者region區域繪製在影像上並儲存
- python 中 is, is not ,==, != 的區別Python
- halcon的頻域影像處理
- Python中的作用域是什麼Python
- Python中的十大影像處理工具Python
- Python中 ‘==‘ 與‘is‘的區別Python
- Python中is和==的區別Python
- Python 中 is 和 == 的區別Python
- JavaScript 擷取指定指定區間字串JavaScript字串
- Python武器庫 - 科研中常用的python影像操作 - 影像拼接Python
- TPAMI 2024 | 自適應區域特定損失:提高影像分割效能
- Python合併多個Excel檔案中的指定sheetPythonExcel
- Python 查詢PDF中的指定文字並高亮顯示Python
- python學習筆記 區域性和全域性作用域Python筆記
- 深度學習中,影像和文字的輸入區別深度學習
- Vagrant 中配置區域網埠
- test函式中的區域性變數函式變數
- 【譯】理解Rust中的區域性移動Rust
- 【漲知識】Linux系統中區域網和廣域網的區別有哪些?Linux
- Python武器庫 - 科研中常用的python影像操作 - 影像顯示Python
- javascript中的作用域(全域性變數和區域性變數)JavaScript變數
- python中怎樣指定open編碼為ansiPython