Skip to content

Instantly share code, notes, and snippets.

View okooo5km's full-sized avatar
🤔
Focusing

十里 okooo5km

🤔
Focusing
View GitHub Profile
@okooo5km
okooo5km / convert_voc2createml.py
Created May 6, 2022 14:06 — forked from bezineb5/convert_voc2createml.py
Pascal VOC annotation to Apple createML annotations conversion tool
import argparse
import json
import logging
import pathlib
from xml.etree import ElementTree
log = logging.getLogger(__name__)
def _parse_arguments() -> argparse.Namespace: