20 lines
366 B
Plaintext
20 lines
366 B
Plaintext
|
|
# Mask R-CNN 实例分割训练依赖
|
||
|
|
# Python 3.11
|
||
|
|
|
||
|
|
# PyTorch (CPU 版本, 无 GPU 时使用)
|
||
|
|
# 安装命令: pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
|
||
|
|
torch>=2.0.0
|
||
|
|
torchvision>=0.15.0
|
||
|
|
|
||
|
|
# 图像处理
|
||
|
|
opencv-python>=4.8.0
|
||
|
|
Pillow>=9.0.0
|
||
|
|
numpy>=1.24.0
|
||
|
|
scikit-image>=0.21.0
|
||
|
|
|
||
|
|
# 标注工具
|
||
|
|
labelme>=6.0.0
|
||
|
|
|
||
|
|
# 进度条
|
||
|
|
tqdm>=4.65.0
|