1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

anacondaにlabelimgインストール方法

Last updated at Posted at 2023-09-16

windows10,11
物体検出用にSSDの教師データを作るため、無料のlabelimgを導入してみた。

Anacondaのcmdでインストール

①PyQt5のインストール

pip install PyQT5

②lxmlのインストール

pip install lxml

④gitのインストール

conda install -c anaconda git

Conda.orgから調べることもできること
https://anaconda.org/anaconda/git

⑤labelImgのソースコードのダウンロード,インストール

git clone https://github.com/tzutalin/labelImg.git
cd labelImg
pyrcc5 -o libs/resources.py resources.qrc

⑥最後起動

python labelImg.py

キャプチャ.PNG

画像を読み込み、label作って見るとこんな感じ
キャプチャ2.PNG

ソース元
https://github.com/tzutalin/labelImg

方法2

pip install labelImg

これで対象packages: PyQt5-Qt5, PyQt5-sip, lxml, pyqt5, labelImgを全部入れてくれる。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?