labelme 修改后的json文件 ,imageData 值改为null的脚本

import os

import json

def set_image_data_to_null(directory):

for filename in os.listdir(directory):

if filename.endswith('.json'):

file_path = os.path.join(directory, filename)

with open(file_path, 'r', encoding='utf-8') as file:

data = json.load(file)

将 imageData 设置为 None,在JSON文件中会显示为 null

if 'imageData' in data:

data['imageData'] = None

保存修改后的文件

with open(file_path, 'w', encoding='utf-8') as file:

json.dump(data, file, indent=4)

替换以下路径为你的JSON文件所在的文件夹路径

directory_path = 'path_to_your_directory'

set_image_data_to_null(directory_path)

相关推荐
神一样的老师8 小时前
【行空板K10】获得当前所在城市及JSON库的移植:
单片机·嵌入式硬件·json
彭世瑜2 天前
C语言:cJSON将struct结构体与JSON互相转换
c语言·开发语言·json
LBJ辉3 天前
第 23 章 JSON
开发语言·前端·javascript·json·ecmascript
乐平要加油啊3 天前
YOLO分割数据集转化(json转TXT)
yolo·json
Amd7944 天前
特殊数据类型的深度分析:JSON、数组和 HSTORE 的实用价值
postgresql·json·数据存储·数据类型·数组·日期和时间·hstore
mr_cmx4 天前
JS 中 json数据 与 base64、ArrayBuffer之间转换
前端·javascript·json
IT猫咪酱5 天前
【sql】CAST(GROUP_CONCAT())实现一对多对象json输出
数据库·sql·json
yzy855 天前
vue中使用exceljs组件库导入导出json到excel
前端·vue.js·json
dingdingfish5 天前
JSON 系列之5:JSON_QUERY
oracle·json·database·19c·23ai
放下华子我只抽RuiKe55 天前
Vue.js 表单验证实战:一个简单的登录页面
前端·javascript·vue.js·学习·flutter·node.js·json