blender-mask-peoples/README.md
2026-02-16 16:08:22 +09:00

43 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Blender Plugin: Mask Peoples
街歩き映像に対して自動モザイクを掛けるために開発しました。
使用https://github.com/akanametov/yolo-face
## 開発者向け情報
### GPU環境の確認
推論サーバーは起動時に環境診断情報を出力します:
- Python環境バージョン、仮想環境の検出
- ROCm環境変数ROCM_PATH、HSA_OVERRIDE_GFX_VERSION等
- GPU検出状況デバイス名、ROCmバージョン
```bash
# サーバーを起動して診断ログを確認
python server/main.py
# サーバーのGPU状態を確認
curl -s http://127.0.0.1:8181/status | jq
```
出力例:
```
[FaceMask Server] Startup Diagnostics
======================================================================
[Python Environment]
Python Version: 3.12.12
Virtual Environment: Yes
[ROCm Environment Variables]
ROCM_PATH: /nix/store/.../clr-7.1.1
HSA_OVERRIDE_GFX_VERSION: 11.0.0
[GPU Detection]
torch.cuda.is_available(): True
GPU Device 0: AMD Radeon Graphics
ROCm Version (HIP): 7.0.51831
======================================================================
```