https://github.com/connectaman/annotmerge
A Pascal VOC annotation Merge Library
https://github.com/connectaman/annotmerge
annotations cvat pascal-voc
Last synced: 4 months ago
JSON representation
A Pascal VOC annotation Merge Library
- Host: GitHub
- URL: https://github.com/connectaman/annotmerge
- Owner: connectaman
- License: mit
- Created: 2021-02-12T11:01:37.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-12T11:19:50.000Z (almost 5 years ago)
- Last Synced: 2025-02-22T09:33:06.630Z (10 months ago)
- Topics: annotations, cvat, pascal-voc
- Language: Python
- Homepage: https://github.com/connectaman/annotmerge
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
Awesome Lists containing this project
README
# annotmerge
This Library helps in merging multiple Pascall VOC Annotation file into a single Annotation.
The Package contains a single function called merge. Which takes a single param: base_directory
you need to specity the folder name where your multiple annotation files are present and then a log
is created and also output directory is created with merged files and folders
```
The Structure of folder
--dataset/
-- annotation folder/
--Annotations/
--ImageSets
--JPEGImages
--labelmaps.txt
-- annotation folder 2/
--Annotations/
--ImageSets
--JPEGImages
--labelmaps.txt
-- ....
-- ....
-- annotation folder n/
--Annotations/
--ImageSets
--JPEGImages
--labelmaps.txt
Output/Result
--output/
--Annotations/
--ImageSets
--JPEGImages
--labelmaps.txt
```