This commit is contained in:
2025-03-03 11:14:21 +08:00
commit 8feec345b9
7 changed files with 2137 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
paper/*.pdf filter=lfs diff=lfs merge=lfs -text

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.12

0
README.md Normal file
View File

6
hello.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Hello from cvth3pe!")
if __name__ == "__main__":
main()

18
pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[project]
name = "cvth3pe"
version = "0.1.0"
description = "Implementation-of-Cross-View-Tracking-for-Multi-Human-3D-Pose-Estimation-at-over-100-FPS"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anyio>=4.8.0",
"jaxtyping>=0.2.38",
"torch>=2.6.0",
"torchvision>=0.21.0",
"typeguard>=4.4.2",
]
[dependency-groups]
dev = [
"jupyter>=1.1.1",
]

2101
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff