日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁技術文章
文章詳情頁

python實現(xiàn)提取COCO,VOC數(shù)據(jù)集中特定的類

瀏覽:14日期:2022-08-02 18:36:22

1.python提取COCO數(shù)據(jù)集中特定的類

安裝pycocotools github地址:https://github.com/philferriere/cocoapi

pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI

提取特定的類別如下:

from pycocotools.coco import COCOimport osimport shutilfrom tqdm import tqdmimport skimage.io as ioimport matplotlib.pyplot as pltimport cv2from PIL import Image, ImageDraw #the path you want to save your results for coco to vocsavepath='/media/huanglong/Newsmy/COCO/' #保存提取類的路徑,我放在同一路徑下img_dir=savepath+’images/’anno_dir=savepath+’Annotations/’# datasets_list=[’train2014’, ’val2014’]datasets_list=[’train2014’] classes_names = [’person’] #coco有80類,這里寫要提取類的名字,以person為例#Store annotations and train2014/val2014/... in this folderdataDir= ’/media/huanglong/Newsmy/COCO/’ #原coco數(shù)據(jù)集 headstr = '''<annotation> <folder>VOC</folder> <filename>%s</filename> <source> <database>My Database</database> <annotation>COCO</annotation> <image>flickr</image> <flickrid>NULL</flickrid> </source> <owner> <flickrid>NULL</flickrid> <name>company</name> </owner> <size> <width>%d</width> <height>%d</height> <depth>%d</depth> </size> <segmented>0</segmented>'''objstr = ''' <object> <name>%s</name> <pose>Unspecified</pose> <truncated>0</truncated> <difficult>0</difficult> <bndbox> <xmin>%d</xmin> <ymin>%d</ymin> <xmax>%d</xmax> <ymax>%d</ymax> </bndbox> </object>''' tailstr = ’’’</annotation>’’’ #if the dir is not exists,make it,else delete itdef mkr(path): if os.path.exists(path): shutil.rmtree(path) os.mkdir(path) else: os.mkdir(path)mkr(img_dir)mkr(anno_dir)def id2name(coco): classes=dict() for cls in coco.dataset[’categories’]: classes[cls[’id’]]=cls[’name’] return classes def write_xml(anno_path,head, objs, tail): f = open(anno_path, 'w') f.write(head) for obj in objs: f.write(objstr%(obj[0],obj[1],obj[2],obj[3],obj[4])) f.write(tail) def save_annotations_and_imgs(coco,dataset,filename,objs): #eg:COCO_train2014_000000196610.jpg-->COCO_train2014_000000196610.xml anno_path=anno_dir+filename[:-3]+’xml’ img_path=dataDir+dataset+’/’+filename print(img_path) dst_imgpath=img_dir+filename img=cv2.imread(img_path) #if (img.shape[2] == 1): # print(filename + ' not a RGB image') # return shutil.copy(img_path, dst_imgpath) head=headstr % (filename, img.shape[1], img.shape[0], img.shape[2]) tail = tailstr write_xml(anno_path,head, objs, tail) def showimg(coco,dataset,img,classes,cls_id,show=True): global dataDir I=Image.open(’%s/%s/%s’%(dataDir,dataset,img[’file_name’])) #通過id,得到注釋的信息 annIds = coco.getAnnIds(imgIds=img[’id’], catIds=cls_id, iscrowd=None) # print(annIds) anns = coco.loadAnns(annIds) # print(anns) # coco.showAnns(anns) objs = [] for ann in anns: class_name=classes[ann[’category_id’]] if class_name in classes_names: print(class_name) if ’bbox’ in ann: bbox=ann[’bbox’] xmin = int(bbox[0]) ymin = int(bbox[1]) xmax = int(bbox[2] + bbox[0]) ymax = int(bbox[3] + bbox[1]) obj = [class_name, xmin, ymin, xmax, ymax] objs.append(obj) draw = ImageDraw.Draw(I) draw.rectangle([xmin, ymin, xmax, ymax]) if show: plt.figure() plt.axis(’off’) plt.imshow(I) plt.show() return objs for dataset in datasets_list: #./COCO/annotations/instances_train2014.json annFile=’{}/annotations/instances_{}.json’.format(dataDir,dataset) #COCO API for initializing annotated data coco = COCO(annFile) #show all classes in coco classes = id2name(coco) print(classes) #[1, 2, 3, 4, 6, 8] classes_ids = coco.getCatIds(catNms=classes_names) print(classes_ids) for cls in classes_names: #Get ID number of this class cls_id=coco.getCatIds(catNms=[cls]) img_ids=coco.getImgIds(catIds=cls_id) print(cls,len(img_ids)) # imgIds=img_ids[0:10] for imgId in tqdm(img_ids): img = coco.loadImgs(imgId)[0] filename = img[’file_name’] # print(filename) objs=showimg(coco, dataset, img, classes,classes_ids,show=False) print(objs) save_annotations_and_imgs(coco, dataset, filename, objs)

2. 將上一步提取的COCO 某一類 xml轉為COCO標準的json文件:

# -*- coding: utf-8 -*-# @Time : 2019/8/27 10:48# @Author :Rock# @File : voc2coco.py# just for object detectionimport xml.etree.ElementTree as ETimport osimport jsoncoco = dict()coco[’images’] = []coco[’type’] = ’instances’coco[’annotations’] = []coco[’categories’] = []category_set = dict()image_set = set()category_item_id = 0image_id = 0annotation_id = 0def addCatItem(name): global category_item_id category_item = dict() category_item[’supercategory’] = ’none’ category_item_id += 1 category_item[’id’] = category_item_id category_item[’name’] = name coco[’categories’].append(category_item) category_set[name] = category_item_id return category_item_iddef addImgItem(file_name, size): global image_id if file_name is None: raise Exception(’Could not find filename tag in xml file.’) if size[’width’] is None: raise Exception(’Could not find width tag in xml file.’) if size[’height’] is None: raise Exception(’Could not find height tag in xml file.’) img_id = '%04d' % image_id image_id += 1 image_item = dict() image_item[’id’] = int(img_id) # image_item[’id’] = image_id image_item[’file_name’] = file_name image_item[’width’] = size[’width’] image_item[’height’] = size[’height’] coco[’images’].append(image_item) image_set.add(file_name) return image_iddef addAnnoItem(object_name, image_id, category_id, bbox): global annotation_id annotation_item = dict() annotation_item[’segmentation’] = [] seg = [] # bbox[] is x,y,w,h # left_top seg.append(bbox[0]) seg.append(bbox[1]) # left_bottom seg.append(bbox[0]) seg.append(bbox[1] + bbox[3]) # right_bottom seg.append(bbox[0] + bbox[2]) seg.append(bbox[1] + bbox[3]) # right_top seg.append(bbox[0] + bbox[2]) seg.append(bbox[1]) annotation_item[’segmentation’].append(seg) annotation_item[’area’] = bbox[2] * bbox[3] annotation_item[’iscrowd’] = 0 annotation_item[’ignore’] = 0 annotation_item[’image_id’] = image_id annotation_item[’bbox’] = bbox annotation_item[’category_id’] = category_id annotation_id += 1 annotation_item[’id’] = annotation_id coco[’annotations’].append(annotation_item)def parseXmlFiles(xml_path): for f in os.listdir(xml_path): if not f.endswith(’.xml’): continue bndbox = dict() size = dict() current_image_id = None current_category_id = None file_name = None size[’width’] = None size[’height’] = None size[’depth’] = None xml_file = os.path.join(xml_path, f) # print(xml_file) tree = ET.parse(xml_file) root = tree.getroot() if root.tag != ’annotation’: raise Exception(’pascal voc xml root element should be annotation, rather than {}’.format(root.tag)) # elem is <folder>, <filename>, <size>, <object> for elem in root: current_parent = elem.tag current_sub = None object_name = None if elem.tag == ’folder’: continue if elem.tag == ’filename’: file_name = elem.text if file_name in category_set: raise Exception(’file_name duplicated’) # add img item only after parse <size> tag elif current_image_id is None and file_name is not None and size[’width’] is not None: if file_name not in image_set: current_image_id = addImgItem(file_name, size) # print(’add image with {} and {}’.format(file_name, size)) else: raise Exception(’duplicated image: {}’.format(file_name)) # subelem is <width>, <height>, <depth>, <name>, <bndbox> for subelem in elem: bndbox[’xmin’] = None bndbox[’xmax’] = None bndbox[’ymin’] = None bndbox[’ymax’] = None current_sub = subelem.tag if current_parent == ’object’ and subelem.tag == ’name’: object_name = subelem.text if object_name not in category_set: current_category_id = addCatItem(object_name) else: current_category_id = category_set[object_name] elif current_parent == ’size’: if size[subelem.tag] is not None: raise Exception(’xml structure broken at size tag.’) size[subelem.tag] = int(subelem.text) # option is <xmin>, <ymin>, <xmax>, <ymax>, when subelem is <bndbox> for option in subelem: if current_sub == ’bndbox’: if bndbox[option.tag] is not None: raise Exception(’xml structure corrupted at bndbox tag.’) bndbox[option.tag] = int(option.text) # only after parse the <object> tag if bndbox[’xmin’] is not None: if object_name is None: raise Exception(’xml structure broken at bndbox tag’) if current_image_id is None: raise Exception(’xml structure broken at bndbox tag’) if current_category_id is None: raise Exception(’xml structure broken at bndbox tag’) bbox = [] # x bbox.append(bndbox[’xmin’]) # y bbox.append(bndbox[’ymin’]) # w bbox.append(bndbox[’xmax’] - bndbox[’xmin’]) # h bbox.append(bndbox[’ymax’] - bndbox[’ymin’]) # print(’add annotation with {},{},{},{}’.format(object_name, current_image_id, current_category_id, # bbox)) addAnnoItem(object_name, current_image_id, current_category_id, bbox)if __name__ == ’__main__’:#修改這里的兩個地址,一個是xml文件的父目錄;一個是生成的json文件的絕對路徑 xml_path = r’G:datasetCOCOpersoncoco_val2014annotations’ json_file = r’G:datasetCOCOpersoncoco_val2014instances_val2014.json’ parseXmlFiles(xml_path) json.dump(coco, open(json_file, ’w’))

3.python提取Pascal Voc數(shù)據(jù)集中特定的類

# -*- coding: utf-8 -*-# @Function:There are 20 classes in VOC data set. If you need to extract specific classes, you can use this program to extract them. import osimport shutilann_filepath=’E:/VOCdevkit/VOC2012/Annotations/’img_filepath=’E:/VOCdevkit/VOC2012/JPEGImages/’img_savepath=’E:TrafficDatasets/JPEGImages/’ann_savepath=’E:TrafficDatasets/Annotations/’if not os.path.exists(img_savepath): os.mkdir(img_savepath) if not os.path.exists(ann_savepath): os.mkdir(ann_savepath)names = locals()classes = [’aeroplane’,’bicycle’,’bird’, ’boat’, ’bottle’, ’bus’, ’car’, ’cat’, ’chair’, ’cow’,’diningtable’, ’dog’, ’horse’, ’motorbike’, ’pottedplant’, ’sheep’, ’sofa’, ’train’, ’tvmonitor’, ’person’] for file in os.listdir(ann_filepath): print(file) fp = open(ann_filepath + ’’ + file) #打開Annotations文件 ann_savefile=ann_savepath+file fp_w = open(ann_savefile, ’w’) lines = fp.readlines() ind_start = [] ind_end = [] lines_id_start = lines[:] lines_id_end = lines[:] classes1 = ’tt<name>bicycle</name>n’ classes2 = ’tt<name>bus</name>n’ classes3 = ’tt<name>car</name>n’ classes4 = ’tt<name>motorbike</name>n’ classes5 = ’tt<name>train</name>n’ #在xml中找到object塊,并將其記錄下來 while 't<object>n' in lines_id_start: a = lines_id_start.index('t<object>n') ind_start.append(a) #ind_start是<object>的行數(shù) lines_id_start[a] = 'delete' while 't</object>n' in lines_id_end: b = lines_id_end.index('t</object>n') ind_end.append(b) #ind_end是</object>的行數(shù) lines_id_end[b] = 'delete' #names中存放所有的object塊 i = 0 for k in range(0, len(ind_start)): names[’block%d’ % k] = [] for j in range(0, len(classes)): if classes[j] in lines[ind_start[i] + 1]: a = ind_start[i] for o in range(ind_end[i] - ind_start[i] + 1): names[’block%d’ % k].append(lines[a + o]) break i += 1 #print(names[’block%d’ % k]) #xml頭 string_start = lines[0:ind_start[0]] #xml尾 if((file[2:4]==’09’) | (file[2:4]==’10’) | (file[2:4]==’11’)): string_end = lines[(len(lines) - 11):(len(lines))] else: string_end = [lines[len(lines) - 1]] #在給定的類中搜索,若存在則,寫入object塊信息 a = 0 for k in range(0, len(ind_start)): if classes1 in names[’block%d’ % k]: a += 1 string_start += names[’block%d’ % k] if classes2 in names[’block%d’ % k]: a += 1 string_start += names[’block%d’ % k] if classes3 in names[’block%d’ % k]: a += 1 string_start += names[’block%d’ % k] if classes4 in names[’block%d’ % k]: a += 1 string_start += names[’block%d’ % k] if classes5 in names[’block%d’ % k]: a += 1 string_start += names[’block%d’ % k] string_start += string_end # print(string_start) for c in range(0, len(string_start)): fp_w.write(string_start[c]) fp_w.close() #如果沒有我們尋找的模塊,則刪除此xml,有的話拷貝圖片 if a == 0: os.remove(ann_savepath+file) else: name_img = img_filepath + os.path.splitext(file)[0] + '.jpg' shutil.copy(name_img, img_savepath) fp.close()

以上這篇python實現(xiàn)提取COCO,VOC數(shù)據(jù)集中特定的類就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標簽: Python 編程
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
欧美日韩精品一本二本三本 | 久久av影院| 午夜精品福利影院| 亚洲精品精选| 精品香蕉视频| 999久久久亚洲| 视频一区视频二区中文字幕| 久久中文视频| 免费观看日韩电影| 日韩国产欧美在线播放| 国产精品免费99久久久| 国产资源在线观看入口av| 五月精品视频| 91成人福利| a天堂资源在线| 亚洲精华国产欧美| 日本va欧美va瓶| av最新在线| 日韩一区精品视频| 国产精品红桃| 久久久久网站| 91欧美精品| 国产一区二区三区四区大秀| 久久久久久久久99精品大| 中文字幕乱码亚洲无线精品一区| 免费亚洲婷婷| 99riav1国产精品视频| 日本午夜精品久久久久| 天堂√中文最新版在线| 亚洲欧洲日韩| 四虎884aa成人精品最新| 亚洲制服一区| 日韩电影在线视频| 日韩在线成人| 秋霞影院一区二区三区| 天堂精品久久久久| 黑人精品一区| 亚洲经典在线| 久久影院资源站| 国产女优一区| 麻豆一区二区三| 亚洲欧洲午夜| 国产福利亚洲| 亚洲一区二区成人| 欧美日韩91| 激情久久久久久久| 国产精品观看| 欧美日韩国产高清电影| 婷婷成人av| 久久香蕉国产| 国产精品自在| 久久亚洲电影| 日本蜜桃在线观看视频| 日韩精品高清不卡| 91高清一区| 日韩在线观看一区| 国产精品白丝久久av网站| 99在线|亚洲一区二区| 五月天av在线| 你懂的国产精品永久在线| 深夜福利一区| 99国产精品99久久久久久粉嫩| 国产不卡精品在线| 国产精品一区二区精品视频观看 | 久久99久久人婷婷精品综合| 欧美色图国产精品| 综合日韩av| 国产精东传媒成人av电影| 爽好久久久欧美精品| 久久精品高清| 欧美xxxx中国| 国产精品第一国产精品| 蜜桃一区二区三区在线| 国产精品久久久久av电视剧| 国产欧美日韩精品高清二区综合区| 在线亚洲观看| 91精品久久久久久久久久不卡| 国产精品一区二区三区美女| 日本欧洲一区二区| 91成人精品视频| 国产aa精品| 精品视频97| 国产欧美日韩影院| 国产精品黄色| 久久精品999| 免费在线观看不卡| 蜜臀国产一区二区三区在线播放| 日韩欧美看国产| 国产a亚洲精品| 国产99在线| 久久久成人网| 国产一区久久| 一区在线免费观看| 久久国产电影| 香蕉久久99| 国产精品麻豆久久| 国产va在线视频| 久久精品一区二区不卡| 日韩精品一卡| 午夜欧美在线| 亚洲午夜精品久久久久久app| 日韩国产网站| 亚洲大片在线| 欧美日韩国产在线观看网站 | 国产偷自视频区视频一区二区| 激情中国色综合| 免费亚洲婷婷| 91综合网人人| 香蕉成人av| 亚洲大全视频| 亚洲男人在线| 久久亚洲人体| 激情欧美一区二区三区| 视频一区二区三区在线| 日韩高清不卡一区| 国产一区日韩| 伊人成人网在线看| 欧美日韩视频免费看| 国产一区2区| 亚洲精品小说| 日本a口亚洲| 久久免费视频66| 激情六月综合| 日韩1区2区3区| 国产一区二区三区国产精品| 欧美午夜精彩| 欧美精品国产| 99久久久久国产精品| 亚洲人成毛片在线播放女女| 久久精品三级| 亚洲一区亚洲| 久久亚洲黄色| 香蕉久久夜色精品国产| 国产欧美一区| 欧美91视频| 日韩va欧美va亚洲va久久| 日韩成人一级| 日韩免费视频| 亚洲久久一区| 精品理论电影在线| 99re国产精品| 国产精品99久久免费| 激情综合亚洲| 国产欧美丝祙| 激情婷婷综合| 国产精品白浆| 激情综合网址| 国产精品极品在线观看| 精品一区亚洲| 免费在线播放第一区高清av| 亚洲精品一区二区妖精| 日韩一区中文| 欧美aa国产视频| 精品72久久久久中文字幕| 亚洲最新av| 久久久9色精品国产一区二区三区| 91精品福利观看| 好看不卡的中文字幕| 国产精品久久国产愉拍| 99亚洲视频| 97精品国产| 日韩av不卡一区二区| 在线成人直播| 国产成人免费精品| 久久国产尿小便嘘嘘| 亚洲精品国产偷自在线观看| 青青草视频一区| 自由日本语亚洲人高潮| 久久久久伊人| 日韩激情网站| 亚洲综合三区| 色偷偷偷在线视频播放| 日本不卡一区二区三区| 激情欧美一区二区三区| 国产一区二区三区不卡视频网站 | 天堂av在线| 国产精品一国产精品| 午夜精品婷婷| 91亚洲一区| 国产精品分类| 视频一区视频二区中文| 亚洲a一区二区三区| 国产不卡一区| 亚洲精品亚洲人成在线观看| 久久久一二三| 国产成人a视频高清在线观看| 日韩中文字幕91| 999久久久精品国产| 国产精品99视频| 国产亚洲一卡2卡3卡4卡新区| 激情国产在线| 国产精品久久久久久妇女| 美女被久久久| 99久久夜色精品国产亚洲狼 | 视频在线观看一区| 老牛国内精品亚洲成av人片| 日产欧产美韩系列久久99| 一区二区精品伦理...| 麻豆久久久久久久| 最新亚洲国产|