├── .gitignore ├── Eval.py ├── Library ├── Dataset.py └── Model.py ├── README.md ├── Train.py └── config.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/.gitignore -------------------------------------------------------------------------------- /Eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/Eval.py -------------------------------------------------------------------------------- /Library/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/Library/Dataset.py -------------------------------------------------------------------------------- /Library/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/Library/Model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/README.md -------------------------------------------------------------------------------- /Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/Train.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuenwang/3D-BoundingBox/HEAD/config.yaml --------------------------------------------------------------------------------