【教程】安装labelme以及旋转标记工具roLabelimg

引言

因为需要标记旋转的目标检测框,所以要用到工具roLabelimg,labelme则更多用来标注图像分割,并且使用roLabelimg的前提是安装labelme。(window环境下)

一、安装Labelme

1、我们使用anaconda创建一个专门的环境并且进入环境,输入以下指令:

conda create -n labelme python=3.6
conda activate labelme

2、通过pip安装:

pip install labelme -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install pyqt5 -i https://pypi.tuna.tsinghua.edu.cn/simple

3、想要启动labelme直接输入labelme即可:

labelme

二、安装roLabelImg

1、roLabelimg的下载地址:GitHub - cgvict/roLabelImg: Label Rotated Rect On Images for training

下载完解压到你任意目录中。

2、使用pycharm打开上一步下载好的文件,进入目录终端,输入以下指令:

pyrcc5 -o resources.py resources.qrc

接着输入:

python roLabelImg.py

注意:执行这一句可能会出现错误:NameError: name 'codecs' is not defined。解决方法:我们只需要打开roLabelImg.py文件,删除头部的注释# -*- coding: utf8 -*-即可解决bug。

3、重新运行

python roLabelImg.py

即可打开标注界面。

注:绘制好框后,主要通过ZXCV来控制旋转角度。

点个赞呗,亲!

你可能感兴趣的:(环境安装与配置,人工智能,YOLO,windows,算法)