一、为什么我们选择用labelimg标注yolov8数据集
它可以标注三种格式的数据
1 VOC标签格式,保存为xml文件。2 yolo标签格式,保存为txt文件。3 createML标签格式,保存为json格式。
二、我们为什么不用labelimg标注yolo数据集
因为它只能标注矩形框!!!!!!!!!!!
三、如何安装labelimg
首先需要python版本为3.9,如果过低会出现错误Could not build wheels for PyQt5-sip, which is required to install pyproject.toml-based projects
在这里我使用conda虚拟环境进行安装Anaconda虚拟环境的介绍与使用
打开Anaconda Powershell Prompt
创建环境:
conda create -n py3.9 python=3.9
激活环境
conda activate py3.9
安装
pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install pyqt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install lxml -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install labelimg -i https://pypi.tuna.tsinghua.edu.cn/simple
打开命令
labelimg
labelimg界面如图
四、如何使用labelimg