前言
方法一:直接使用python脚本处理;
方法二:使用labelme自带的labelme_json_to_dataset,基于shell脚本处理;
shell:
#! /bin/bash dir=`ls /home/xxx/workspace/project/labelme2dataset/anno/*.json` # echo $dir for file in $dir do # echo $file labelme_json_to_dataset $file done
参考
1. ubuntu用脚本实现labelme批量json_to_dataset方法;
2. 语义分割中单类别和多类别图片数据标注,以及灰度类别转换;
完