Ubuntu18.04利用labelme工具生成coco所需的数据集

  1. 创建labelme虚拟环境,并进入到虚拟环境,安装labelme软件

conda create -n labelme python=3.8
conda activate lableme
pip install labelme -i https://pypi.tuna.tsinghua.edu.cn/simple

  1. 打开labelme软件,就可以对你的图片进行打标签

labelme

  1. 弄好标签json文件+图片放在一起
  2. 然后下载labelme工具包,并安装,接着运行如下代码,即可生成想要的coco标签

cd labelme/examples/instance_segmentation/
./labelme2coco.py data_annotated data_dataset_coco --labels labels.txt

你可能感兴趣的:(python,linux,机器学习)