forked from HunterCQu/AITools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# -*- coding: utf-8 -*- | ||
# Author : Andy Liu | ||
# Last modified: 2020-05-22 | ||
|
||
# This tool is used to pick images by text list | ||
# input: python3 pick_img_by_xml.py ./xml_folder ./img_folder | ||
# output: | ||
# ./pickedImg | ||
#NOTE: xml file contains the image path | ||
# |-- xml foler | ||
# |-- folder1 | ||
# |--xml file | ||
import os | ||
import shutil | ||
import sys | ||
import argparse | ||
import xml.dom.minidom | ||
from tqdm import tqdm | ||
|
||
|
||
def parse_args(): | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument('srcXML', help='XML file', type=str) | ||
parser.add_argument('srcIMG', help='images directory', type=str) | ||
|
||
args = parser.parse_args() | ||
return args | ||
|
||
|
||
def pick(srcXML, srcIMG): | ||
pickedImg_dir = "./pickedImg" | ||
|
||
srcXML = os.path.abspath(srcXML) | ||
if srcXML[-1] == "/": | ||
srcXML = srcXML[:-1] | ||
|
||
# recreate folder | ||
if not os.path.exists(pickedImg_dir): | ||
os.makedirs(pickedImg_dir) | ||
|
||
xmlFolderList = os.listdir(srcXML) | ||
|
||
for xmlFolder in xmlFolderList: | ||
xmlFolder = os.path.join(srcXML, xmlFolder) | ||
if not os.path.isdir(xmlFolder): | ||
continue | ||
xmlList = os.listdir(xmlFolder) | ||
for xml_file in tqdm(xmlList): | ||
xml_file = os.path.join(xmlFolder, xml_file) | ||
xml_info = xml_file.split(".") | ||
# print(xml_info) | ||
if xml_info[-1] != "xml": | ||
continue | ||
|
||
dom = xml.dom.minidom.parse(xml_file) | ||
collection = dom.documentElement | ||
path = collection.getElementsByTagName('path')[0] | ||
img_path = path.childNodes[0].data | ||
img_path = os.path.join(srcIMG, img_path) | ||
img_name = os.path.basename(img_path) | ||
|
||
img_new_folder = os.path.join(pickedImg_dir, os.path.basename(xmlFolder)) | ||
if not os.path.exists(img_new_folder): | ||
os.makedirs(img_new_folder) | ||
img_new_path = os.path.join(img_new_folder, img_name) | ||
# print(">>>>>>>>>>>>>>", img_name) | ||
|
||
shutil.copyfile(img_path, img_new_path) | ||
print("Path of picked images = ", os.path.abspath(pickedImg_dir)) | ||
|
||
if __name__ == '__main__': | ||
args = parse_args() | ||
srcXML = args.srcXML | ||
srcIMG = args.srcIMG | ||
|
||
if not os.path.exists(srcXML): | ||
print("Error !!! %s is not exists, please check the parameter"%srcXML) | ||
sys.exit(0) | ||
|
||
|
||
if not os.path.exists(srcIMG): | ||
print("Error !!! %s is not exists, please check the parameter"%srcIMG) | ||
sys.exit(0) | ||
|
||
pick(srcXML, srcIMG) | ||
# pick("./xmlFolder", "./imgfolder") | ||
print("Done!") |