0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[rembg] AIで背景を消してみよう [Mac向け]

Posted at

環境

OS: Sonoma
pythonのバージョン: Python 3.10.6
ターミナルエミュレータ: iTerm2
rembg: 2.0.60

pipx

pipx をインストール

brew install pipx

pipx のパスをシェルに追加する
成功文がちょっとかわいいゾ

pipx ensurepath

スクリーンショット 2024-12-07 15.36.29.png

変更を反映

source ~/.zshrc

rembgをインストール

pipx install rembg

バージョン確認

rembg --version

以下のようにバージョンが表示されればOK

rembg, version 2.0.60

使用できるコマンドを確認

rembg --help
Options:
  --version  Show the version and exit.
  --help     Show this message and exit.

Commands:
  b  for a byte stream as input
  d  download all models
  i  for a file as input
  p  for a folder as input
  s  for a http server

実行

rembg i input.webp output.png

精度が微妙だ!!

input.png
output.png

諦めるのはまだ早い、デフォルトではu2netというモデルが使用されているんだが、
人物に特化したu2net_human_segなど、他のモデルを使うことができるぞ!

まずは使用可能なモデル一覧を確認しよう!

rembg d

いろいろダウンロードがはじまる
スクリーンショット 2024-12-07 16.12.12.png

終わったら別のモデルも試してみよう!

rembg -m u2net_human_seg -i input.webp -o output.png
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?