91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Python怎么將bmp格式的圖片批量轉成jpg

發布時間:2023-03-25 10:24:19 來源:億速云 閱讀:85 作者:iii 欄目:開發技術

這篇文章主要介紹“Python怎么將bmp格式的圖片批量轉成jpg”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Python怎么將bmp格式的圖片批量轉成jpg”文章能幫助大家解決問題。

將bmp格式的圖片批量轉成jpg

# *_* coding : UTF-8 *_*
# 開發人員: csu·pan-_-||
# 開發時間: 2020/11/21 12:40
# 文件名稱: bmp_to_jpg.py
# 開發工具: PyCharm
# 功能描述: 將bmp格式的圖片批量轉成jpg

import os
import cv2

# 圖片的路徑
bmp_dir = r'E:\Projects\bmp'
jpg_dir = r'E:\Projects\jpg'

filelists = os.listdir(bmp_dir)

for i,file in enumerate(filelists):
    # 讀圖,-1為不改變圖片格式,0為灰度圖  
    img = cv2.imread(os.path.join(bmp_dir,file),-1)
    newName = file.replace('.bmp','.jpg')
    cv2.imwrite(os.path.join(jpg_dir,newName),img)
    print('第%d張圖:%s'%(i+1,newName))

python圖像格式轉換(bmp、jpg、png)

bmp轉png

import os
from PIL import Image
json_dir = r"D:\BMP2PNG"
label_names = os.listdir(json_dir)
label_dir = []
for filename in label_names:
    label_dir.append(os.path.join(json_dir,filename))

for i,filename in enumerate(label_dir):

    im = Image.open(filename)  # open ppm file

    newname = label_names[i].split('.')[0] + '.png'  # new name for png file
    im.save(os.path.join(json_dir,newname))

bmp轉jpg

import os
from PIL import Image
json_dir = r"D:\BMP2JPG"
label_names = os.listdir(json_dir)
label_dir = []
for filename in label_names:
    label_dir.append(os.path.join(json_dir,filename))

for i,filename in enumerate(label_dir):

    im = Image.open(filename)  # open ppm file

    newname = label_names[i].split('.')[0] + '.jpg'  # new name for png file
    im.save(os.path.join(json_dir,newname))

遍歷文件夾下包含子文件夾中的所有bmp轉png

import os
from PIL import Image
import tqdm

def bmp2png(file_dir):
    for root, dirs, files in os.walk(file_dir):  # 獲取所有文件
        # for file in files:  # 遍歷所有文件名
        for idx,file in enumerate(tqdm.tqdm(files)):
            if os.path.splitext(file)[1] == '.bmp':   # 指定尾綴  ***重要***
                im = Image.open(os.path.join(root, file))  # open img file
                newname = file.split('.')[0] + '.png'  # new name for png file
                im.save(os.path.join(root, newname))  # 轉為png

bmp2png(r"D:\數據集\20221105-18")

遍歷文件夾下包含子文件夾中的所有bmp重命名為png

import os
from PIL import Image
import tqdm

def bmp2png(file_dir):
    for root, dirs, files in os.walk(file_dir):  # 獲取所有文件
        # for file in files:  # 遍歷所有文件名
        for idx,file in enumerate(tqdm.tqdm(files)):
            if os.path.splitext(file)[1] == '.bmp':   # 指定尾綴  ***重要***
                newname = file.split('.')[0] + '.png'  # new name for png file
                if(os.path.exists(os.path.join(root, newname))):
                    os.remove(os.path.join(root, newname))
                os.rename(os.path.join(root, file),os.path.join(root, newname))
                print(os.path.join(root, file))

bmp2png(r"D:\PUCP數據集\20221105-18")

關于“Python怎么將bmp格式的圖片批量轉成jpg”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

遂平县| 潮安县| 盖州市| 交口县| 乳源| 云安县| 弋阳县| 体育| 偃师市| 黎平县| 化隆| 军事| 清涧县| 凯里市| 海丰县| 汨罗市| 河津市| 苍梧县| 彩票| 澄迈县| 华容县| 鲜城| 岳阳市| 石城县| 泸西县| 台山市| 金塔县| 杭锦后旗| 中方县| 锦州市| 广州市| 毕节市| 伊宁市| 临猗县| 东平县| 辉县市| 宁都县| 镇江市| 景德镇市| 泰顺县| 吉首市|