├── .gitignore ├── Dockerfile ├── README.md ├── check_predictions.py ├── compute_error.py ├── content_now_dataset.png ├── cumulative_errors.py ├── eval.ipynb ├── landmarks_7_annotated.png ├── requirements.txt ├── scan2mesh_computations.py └── scan2mesh_computations_metrical.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/README.md -------------------------------------------------------------------------------- /check_predictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/check_predictions.py -------------------------------------------------------------------------------- /compute_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/compute_error.py -------------------------------------------------------------------------------- /content_now_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/content_now_dataset.png -------------------------------------------------------------------------------- /cumulative_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/cumulative_errors.py -------------------------------------------------------------------------------- /eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/eval.ipynb -------------------------------------------------------------------------------- /landmarks_7_annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/landmarks_7_annotated.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/requirements.txt -------------------------------------------------------------------------------- /scan2mesh_computations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/scan2mesh_computations.py -------------------------------------------------------------------------------- /scan2mesh_computations_metrical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soubhiksanyal/now_evaluation/HEAD/scan2mesh_computations_metrical.py --------------------------------------------------------------------------------