Open monkeycc opened 2 days ago
Hi @monkeycc,
You can import the different classes using the standard import statement: from globox import AnnotationSet
. You can also import globox
and then use Ann = globox.AnnotationSet(...)
.
Your other questions are covered in the documentation, take a look at the README file of the repo. There are methods on AnnotationSet
to parse YOLO annotations and to convert them to other formats such as COCO and LabelMe.
How to call AnnotationSet NameError: name 'AnnotationSet' is not defined. Did you mean: 'annotations'?
How to call Annotation annotation = Annotation.from_labelme(file_path="path/to/file.xml")
I want to convert coco to yolo and coco to labelme. How to implement the code method