【代码 | 数据处理】标注纠错

1、4×17点个数判断

import os
import json

def get_number(root='image1'):
    """获取数字编号"""
    files = os.listdir(root)
    numbers = []
    for file in files:
        numbers.append(file.split('.')[0].split('_')[-1])
    return numbers

def json_filelist(jsonpath):
    """获取json文件路径"""
    jsons_path = []
    json_list = os.listdir(jsonpath)
    for json in json_list:
        if json.endswith('.json'):#对文件格式进行判断
            jsons_path.append(os.path.join(jsonpath, json))
    return jsons_path

def check_points(json_path):
    with open(json_path, 'r', encoding='utf-8') as f:
        load_dict = json.load(f)
    if len(load_dict['shapes']) == 68:
        # print(json_path,'true')
        pass
    else:
        print(json_path, 'false')


if __name__ == '__main__':
    numbers = get_number()
    print(numbers)
    # ap_json = json_filelist('ap_json')
    lat_json = json_filelist('jason1')
    # print(ap_json)
    print(len(lat_json))
    # for ap in ap_json:
    #     check_points(ap)
    for lat in lat_json:
        check_points(lat)

【过程记录】:

1、报错:FileNotFoundError: [Errno 2] No such file or directory: 'j' 检索目录

解决: 首先是放在同一目录下,所以路径没问题,是主程序中lat_jason变量使用不合理

2、因为jason中混入了一个zip,遂加一个文件格式判断:if json.endswith('.json')

endswith:判断字符串是否以指定的子字符串结尾(区分大小写)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值