自建数据集系列:cocoJson数据集统计分析

前言
之前文章中放了这么一张统计的图,虽然给出了每个类别对应的实例数,一看就是及其不均衡,不利于分类。但这里实例的图片分布并没有,不利于后续的不均衡扩增。
实现
cocoJsonStat.py
import json
from unicodedata import category
import tqdm
import os

json_file = "COD10K_CAM_coco/annotations/instances_train2017.json"

cnt_dict = {}
with open(json_file) as f:
data = json.load(f)

# Create image dict
images = {'%g' % x['id']: x for x in data['images']}

catego

自建数据集系列:cocoJson数据集统计分析最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/10397.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>