File size: 10,610 Bytes
62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf 62030e0 81e7fbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
"""loader.py: Load and Store Functions for the Dataset"""
# System Imports
import os, sys
from os.path import join, realpath
import json
import xml.etree.ElementTree as ET
from lxml import etree
# Third Party Imports
import cv2
__author__ = "Johannes Bayer"
__copyright__ = "Copyright 2022-2023, DFKI"
__license__ = "CC"
__version__ = "0.0.1"
__email__ = "[email protected]"
__status__ = "Prototype"
def load_classes() -> dict:
"""Returns the List of Classes as Encoding Map"""
with open("classes.json") as classes_file:
return json.loads(classes_file.read())
def load_classes_ports() -> dict:
"""Reads Symbol Library from File"""
with open("classes_ports.json") as json_file:
return json.loads(json_file.read())
def load_properties() -> dict:
"""Loads the Properties RegEx File"""
with open("properties.json") as json_file:
return json.loads(json_file.read())
def _sample_info_from_path(path: str) -> tuple:
"""Extracts Sample Metadata from File Path"""
drafter, _, file_name = os.path.normpath(path).split(os.sep)[-3:]
circuit, drawing, picture = file_name.split("_")
picture, suffix = picture.split(".")
return drafter.split("_")[1], int(circuit[1:]), int(drawing[1:]), int(picture[1:]), suffix
def sample_name(sample: dict) -> str:
"""Returns the Name of a Sample"""
return f"C{sample['circuit']}_D{sample['drawing']}_P{sample['picture']}"
def file_name(sample: dict) -> str:
"""return the Raw Image File Name of a Sample"""
return f"{sample_name(sample)}.{sample['format']}"
def read_pascal_voc(path: str) -> dict:
"""Reads the Content of a Pascal VOC Annotation File"""
root = ET.parse(path).getroot()
circuit, drawing, picture = root.find("filename").text.split("_")
drafter = int(os.path.normpath(path).split(os.sep)[-3].split("_")[1])
return {"drafter": drafter,
"circuit": int(circuit[1:]),
"drawing": int(drawing[1:]),
"picture": int(picture.split(".")[0][1:]),
"format": picture.split(".")[-1],
"width": int(root.find("size/width").text),
"height": int(int(root.find("size/height").text)),
"bboxes": [{"class": annotation.find("name").text,
"xmin": int(annotation.find("bndbox/xmin").text),
"xmax": int(annotation.find("bndbox/xmax").text),
"ymin": int(annotation.find("bndbox/ymin").text),
"ymax": int(annotation.find("bndbox/ymax").text),
"rotation": int(annotation.find("bndbox/rotation").text) if annotation.find("bndbox/rotation") is not None else None,
"text": annotation.find("text").text if annotation.find("text") is not None else None}
for annotation in root.findall('object')],
"polygons": [], "points": []}
def write_pascal_voc(sample: dict) -> None:
"""Writes a Sample's Content to an Pascal VOC Annotation File"""
root = etree.Element("annotation")
etree.SubElement(root, "folder").text = "images"
etree.SubElement(root, "filename").text = file_name(sample)
etree.SubElement(root, "path").text = join(".", f"drafter_{sample['drafter']}", "images", file_name(sample))
src = etree.SubElement(root, "source")
etree.SubElement(src, "database").text = "CGHD"
size = etree.SubElement(root, "size")
etree.SubElement(size, "width").text = str(sample["width"])
etree.SubElement(size, "height").text = str(sample["height"])
etree.SubElement(size, "depth").text = "3"
etree.SubElement(root, "segmented").text = "0"
for bbox in sample["bboxes"]:
xml_obj = etree.SubElement(root, "object")
etree.SubElement(xml_obj, "name").text = bbox["class"]
etree.SubElement(xml_obj, "pose").text = "Unspecified"
etree.SubElement(xml_obj, "truncated").text = "0"
etree.SubElement(xml_obj, "difficult").text = "0"
xml_bbox = etree.SubElement(xml_obj, "bndbox")
for elem in ["xmin", "ymin", "xmax", "ymax"]:
etree.SubElement(xml_bbox, elem).text = str(bbox[elem])
if bbox["rotation"] is not None:
etree.SubElement(xml_bbox, "rotation").text = str(bbox["rotation"])
if bbox["text"]:
etree.SubElement(xml_obj, "text").text = bbox["text"]
etree.indent(root, space="\t")
etree.ElementTree(root).write(join(".", f"drafter_{sample['drafter']}", "annotations",
f"C{sample['circuit']}_D{sample['drawing']}_P{sample['picture']}.xml"),
pretty_print=True)
def read_labelme(path: str) -> dict:
"""Reads and Returns Geometric Objects from a LabelME JSON File"""
with open(path) as json_file:
json_data = json.load(json_file)
drafter, circuit, drawing, picture, _ = _sample_info_from_path(path)
suffix = json_data['imagePath'].split(".")[-1]
return {'img_path': json_data['imagePath'].replace("\\", "/"), 'drafter': drafter, 'circuit': circuit,
'drawing': drawing, 'picture': picture, 'format': suffix,
'height': json_data['imageHeight'], 'width': json_data['imageWidth'], 'bboxes': [],
'polygons': [{'class': shape['label'],
'bbox': {'xmin': min(point[0] for point in shape['points']),
'ymin': min(point[1] for point in shape['points']),
'xmax': max(point[0] for point in shape['points']),
'ymax': max(point[1] for point in shape['points'])},
'points': shape['points'],
'rotation': shape.get('rotation', None),
'text': shape.get('text', None),
'group': shape.get('group_id', None)}
for shape in json_data['shapes']
if shape['shape_type'] == "polygon"],
'points': [{'class': shape['label'], 'points': shape['points'][0],
'group': shape['group_id'] if 'group_id' in shape else None}
for shape in json_data['shapes']
if shape['shape_type'] == "point"]}
def write_labelme(geo_data: dict, path: str = None) -> None:
"""Writes Geometric Objects to a LabelMe JSON File"""
if not path:
path = join(f"drafter_{geo_data['drafter']}", "instances",
f"C{geo_data['circuit']}_D{geo_data['drawing']}_P{geo_data['picture']}.json")
with open(path, 'w') as json_file:
json.dump({'version': '5.2.0',
'flags': {},
'shapes': [{'line_color': None, 'fill_color': None,'label': polygon['class'],
'points': polygon['points'],
'group_id': polygon.get('group', None),
'description': polygon.get('description', None),
**({'rotation': polygon['rotation']} if polygon.get('rotation', None) else {}),
**({'text': polygon['text']} if polygon.get('text', None) else {}),
'shape_type': 'polygon', 'flags': {}}
for polygon in geo_data['polygons']] +
[{'label': point['class'], 'points': [[point['points'][0], point['points'][1]]],
'group_id': point['group'], 'shape_type': 'point', 'flags': {}}
for point in geo_data['points']],
'imagePath': geo_data['img_path'],
'imageData': None,
'imageHeight': geo_data['height'],
'imageWidth': geo_data['width'],
'lineColor': [0, 255, 0, 128],
'fillColor': [255, 0, 0, 128]},
json_file, indent=2)
def read_dataset(drafter: int = None, circuit: int = None, segmentation=False, folder: str = None) -> list:
"""Reads all BB Annotation Files from Folder Structure
This Method can be invoked from Anywhere, can be restricted to a specified drafter
and can be use for both BB and Polygon Annotations. Alternative annotation sub-folder
can be specified to read processed ground truth."""
db_root = os.sep.join(realpath(__file__).split(os.sep)[:-1])
return sorted([(read_labelme if segmentation else read_pascal_voc)(join(root, file_name))
for root, _, files in os.walk(db_root)
for file_name in files
if (folder if folder else ("instances" if segmentation else "annotations")) in root and
(not circuit or f"C{circuit}_" in file_name) and
(not drafter or f"drafter_{drafter}{os.sep}" in root)],
key=lambda sample: sample["circuit"]*100+sample["drawing"]*10+sample["picture"])
def write_dataset(db: list, segmentation=False) -> None:
"""Writes a Dataset"""
for sample in db:
(write_labelme if segmentation else write_pascal_voc)(sample)
def read_images(**kwargs) -> list:
"""Loads Images and BB Annotations and returns them as as List of Pairs"""
db_root = os.sep.join(realpath(__file__).split(os.sep)[:-1])
return [(cv2.imread(join(db_root, f"drafter_{sample['drafter']}", "images", file_name(sample))), sample)
for sample in read_dataset(**kwargs)]
def read_snippets(**kwargs):
"""Loads Image Snippets and BBoxes and returns them as List of Pairs"""
snippets = []
for img, annotations in read_images(**kwargs):
for bbox in annotations['bboxes']:
snippets += [(img[bbox['ymin']:bbox['ymax'], bbox['xmin']:bbox['xmax']], bbox, sample_name(annotations))]
return snippets
if __name__ == "__main__":
"""Sample Loader Usage, Dumps All Text Snippets of (Selectable or All) Drafter to Test Folder"""
os.mkdir("test")
args = {'drafter': int(sys.argv[1])} if len(sys.argv) == 2 else {}
for snippet, bbox, sample in read_snippets(**args):
if bbox['class'] == "text" and bbox.get("text", ""):
if bbox['rotation'] == 90:
snippet = cv2.rotate(snippet, cv2.ROTATE_90_CLOCKWISE)
if bbox['rotation'] == 270:
snippet = cv2.rotate(snippet, cv2.ROTATE_90_COUNTERCLOCKWISE)
cv2.imwrite(join("test", f"{bbox['text']}___{sample}_{bbox['ymin']}_{bbox['ymax']}_{bbox['xmin']}_{bbox['xmax']}.png"), snippet)
|