labelImg and labelme installation and use

1. Labllmgde installation and use

Environment: Window11+Anaconda3
python: 3.7

# 启动Anaconda Prompt

# 创建环境

conda create -n yourselfName python=3.7 -y

# 进入环境

conda activate yourselfName

# 安装依赖(此处使用了换源的方式)

pip install PyQt5 pyqt5-tools lxml -i https://pypi.tuna.tsinghua.edu.cn/simple 

# 安装labelimg

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

# 启动labelImg

labelImg

 ctrl + s: save

a : previous image

d : next picture

w : bring up the cursor

2. Installation and use of labelme (multiple points can be marked to generate .json files)

Environment: Window11+Anaconda3
python: 3.6

# 环境创建

conda create -n yourselfName python=3.6 -y

# 进入所创建的环境

conda activate yourselfName

# 安装依赖

conda install pyqt

# 安装labelme

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

# 启动labelme 
 
labelme


 ctrl + s: save

a : previous image

d : next picture

w : bring up the cursor

json file to image:   labelme/examples/tutorial at v3.11.2 wkentaro/labelme GitHub

Guess you like

Origin blog.csdn.net/weixin_45994963/article/details/127731342