Working with PascalVOC annotations
Project description
pascal
Python utility to work with PascalVoc annotation format
Image examples from PascalVoc2007 dataset
Code Examples
Read annotation from xml file
from pathlib import Path
import cv2
from pascal import PascalVOC
ds = Path("./datasets/VOCtrainval_06-Nov-2007/VOCdevkit/VOC2007/Annotations")
img_path = Path("./datasets/VOCtrainval_06-Nov-2007/VOCdevkit/VOC2007/JPEGImages")
if __name__ == '__main__':
for file in ds.glob("*.xml"):
ann = PascalVOC.from_xml(file)
img = cv2.imread(str(img_path / ann.filename))
for obj in ann.objects:
p1 = (obj.bndbox.xmin, obj.bndbox.ymin)
p2 = (obj.bndbox.xmax, obj.bndbox.ymin)
p3 = (obj.bndbox.xmax, obj.bndbox.ymax)
p4 = (obj.bndbox.xmin, obj.bndbox.ymax)
cv2.line(img, p1, p2, color=(0, 255, 0), thickness=3)
cv2.line(img, p2, p3, color=(0, 255, 0), thickness=3)
cv2.line(img, p3, p4, color=(0, 255, 0), thickness=3)
cv2.line(img, p4, p1, color=(0, 255, 0), thickness=3)
cv2.imshow("Image", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
Make annotation
from pascal import PascalVOC, PascalObject, BndBox, size_block
if __name__ == '__main__':
obj = PascalObject("chair", "Rear", truncated=False, difficult=False, bndbox=BndBox(263, 211, 324, 339))
pascal_ann = PascalVOC("000005.jpg", size=size_block(500, 375, 3), objects=[obj])
pascal_ann.save("000005.xml")
Convert to labelme format
from pathlib import Path
import json
from pascal import PascalVOC
ds = Path("./datasets/VOCtrainval_06-Nov-2007/VOCdevkit/VOC2007")
annotations = ds / "Annotations"
img_path = ds / "JPEGImages"
out = ds / "label_me"
if __name__ == '__main__':
for file in annotations.glob("*.xml"):
ann = PascalVOC.from_xml(file)
lbl_me = ann.to_labelme(img_path, save_img_data=False)
with open(out / f"{file.stem}.json", "w") as f:
json.dump(lbl_me, f)
Installation
python setup.py install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
pascal_voc-0.0.1-py3.7.egg
(11.5 kB
view details)
File details
Details for the file pascal_voc-0.0.1-py3.7.egg
.
File metadata
- Download URL: pascal_voc-0.0.1-py3.7.egg
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e7f518bf7f81f9611e3fecf564da6750b94099c0d88a066f692d64f337b8343 |
|
MD5 | 7a21b290cefe4a7fccab80d9765f937b |
|
BLAKE2b-256 | c3fff58003278f2a4a8e1088c4330302f7a12381fef5f8eda40cea6634525244 |