1. 程式人生 > 其它 >python修改json檔案資訊

python修改json檔案資訊

技術標籤:python

因為json檔案裡的圖片路徑有一些中文或者其他字元,在訓練過程中會認為這些圖片存在問題。不容易處理,可以將圖片路徑修改。

import json
import os
for JSON in os.listdir('json'):
    with open('json/' + JSON, encoding='gb18030') as f:
        data = json.load(f)
        data['imagePath'] = '/data/liubo/paddle_mask/imgs/' + JSON.replace('json', 'jpg')
        with open('json2/' + JSON, 'w') as f2:
            json.dump(data, f2,indent=1)

修改前後對比