딥러닝

COCO json file 병합

승무_ 2022. 9. 8. 20:48
pip install COCO_merger
python -m COCO_merger.merge --src Json1.json Json2.json --out OUTPUT_JSON.json
usage: merge.py [-h] --src SRC SRC --out OUT

Merge two annotation files to one file

optional arguments:
  -h, --help     show this help message and exit
  --src SRC SRC  Path of two annotation files to merge
  --out OUT      Path of the output annotation file

 

'딥러닝' 카테고리의 다른 글

[Colab] unzip  (0) 2022.09.14
[Colab] MMdetection Custom Data 학습  (1) 2022.09.10
YOLOv5 검출 결과 Crop  (0) 2022.09.08
DETR 코드  (1) 2022.09.02
CAM(Class Activation Map)  (0) 2022.08.30