IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> labelme json转mpii 格式转换 -> 正文阅读

[人工智能]labelme json转mpii 格式转换

Lableme2mpii

import numpy as np
import json
import glob
import random

class MyEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, np.integer):
            return int(obj)
        elif isinstance(obj, np.floating):
            return float(obj)
        elif isinstance(obj, np.ndarray):
            return obj.tolist()
        else:
            return super(MyEncoder, self).default(obj)




class tompii(object):
    def __init__(self, jsonfile, save_path):
        self.annotations = []
        self.jsonfile=jsonfile
        self.save_path=save_path
        self.cnt=0
    def check(self,data):
        if len(data['shapes']) % 17 !=0:
            return False
        for i in range(len(data['shapes'])):
            if i % 17 ==0 and data['shapes'][i]['label']!='obj':
                return False
            if i % 17 != 0 and data['shapes'][i]['label'] not in ['0','1','2']:
                return False
        return True
    def get_cattle_width(self,obj):
        return obj['points'][1][0] - obj['points'][0][0]
    def get_cattle_height(self,obj):
        return obj['points'][1][1] - obj['points'][0][1]
    def get_objpos(self,obj):
        return [round((obj['points'][0][0]+obj['points'][1][0]/2),3),round((obj['points'][0][1]+obj['points'][1][1]/2),3)]

    def labelme_to_mpii(self):
        annid = 0
        for num, json_file in enumerate(self.jsonfile):

            annotation={}
            data = open(json_file, "r")
            data = json.load(data)
            if self.check(data) != True:
                print(json_file)
                continue
            self.cnt+=1

            annotation['img_paths']=json_file.split('\\')[1].split('.')[0]+".jpg"

            cattleNum = len(data['shapes']) // 17
            for main in range(cattleNum):
                cattle_width=round(self.get_cattle_width(data['shapes'][17*main]),3)
                cattle_height=round(self.get_cattle_height(data['shapes'][17*main]),3)
                scale_provided=round(data['imageWidth']/cattle_width,3)
                annotation['objpos']=self.get_objpos(data['shapes'][17*main])
                annotation['validation']=0.0


                shapes = data["shapes"]
                joint_self=[]
                for i in range(17*main+1,17*main+17):
                    point=[round(shapes[i]['points'][0][0],3),round(shapes[i]['points'][0][1],3),eval(shapes[i]['label'])]

                    joint_self.append(point)
                annotation['joint_self']=joint_self
                annotation['scale_provided']=scale_provided
                if cattleNum==1:
                    numOtherCattle=0.0
                    objpos_other=None
                    joint_others=None
                    scale_provided_other=None
                    annotation['numOtherCattle']=numOtherCattle
                    annotation['objpos_other']=objpos_other
                    annotation['joint_others']=joint_others
                    annotation['scale_provided_other']=scale_provided_other
                else:
                    nuuOtherCattle=cattleNum-1
                    objpos_other=[]
                    joint_others=[]
                    scale_provided_other=[]
                    for i in range(cattleNum):
                        if i == main:
                            continue
                        cattle_width = round(self.get_cattle_width(data['shapes'][i*17]), 3)
                        cattle_height = round(self.get_cattle_height(data['shapes'][i*17]), 3)
                        scale_provided_other.append(round(data['imageWidth'] / cattle_width,3))
                        objpos_other.append(self.get_objpos(data['shapes'][i*17]))
                        joint_other=[]
                        for j in range(1,17):
                            point = [round(shapes[i*17+j]['points'][0][0], 3), round(shapes[i*17+j]['points'][0][1], 3),
                                     eval(shapes[i*17+j]['label'])]

                            joint_other.append(point)
                        joint_others.append(joint_other)
                    annotation['numOtherCattle'] = numOtherCattle
                    annotation['objpos_other'] = objpos_other
                    annotation['joint_others'] = joint_others
                    annotation['scale_provided_other'] = scale_provided_other
            self.annotations.append(annotation)
        random.shuffle(self.annotations)
        length=len(self.annotations)
        for i in self.annotations[-int(length*0.2):-1]:
            i['validation']=1.0
        print(self.annotations[-int(length*0.2):-1])
    def save_json(self):
        self.labelme_to_mpii()
        mpii_annotations = self.annotations
        # 保存json文件
        json.dump(mpii_annotations, open(self.save_path, 'w'), indent=4, cls=MyEncoder)  # indent=4 更加美观显示


import glob

labelme_json = glob.glob('json/*.json')
c = tompii(labelme_json, 'new_annotations.json')
c.save_json()
  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-04-14 23:56:33  更:2022-04-14 23:56:58 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 10:34:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码