first commit

This commit is contained in:
2025-07-26 07:23:50 -07:00
commit cc77989365
15 changed files with 2429 additions and 0 deletions

27
setup.py Normal file
View File

@@ -0,0 +1,27 @@
from setuptools import setup, find_packages
setup(
name="vr180-matting",
version="0.1.0",
description="VR180 Human Matting with Det-SAM2",
packages=find_packages(),
install_requires=[
"torch>=2.0.0",
"torchvision>=0.15.0",
"opencv-python>=4.8.0",
"numpy>=1.24.0",
"pillow>=10.0.0",
"pyyaml>=6.0",
"ultralytics>=8.0.0",
"sam2>=1.0.0",
"tqdm>=4.65.0",
"psutil>=5.9.0",
"ffmpeg-python>=0.2.0",
],
entry_points={
"console_scripts": [
"vr180-matting=vr180_matting.main:main",
],
},
python_requires=">=3.8",
)