gitextract_et_nuf0z/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── eval.py ├── examples/ │ ├── alias_for_plotting.json │ ├── config_dataset_json_example.json │ ├── config_method_json_example.json │ ├── converter_config.yaml │ ├── rgbd_aliases.yaml │ ├── single_row_style.yml │ └── two_row_style.yml ├── metrics/ │ ├── __init__.py │ ├── draw_curves.py │ ├── image_metrics.py │ └── video_metrics.py ├── plot.py ├── pyproject.toml ├── readme.md ├── readme_zh.md ├── requirements.txt ├── tools/ │ ├── append_results.py │ ├── check_path.py │ ├── converter.py │ ├── info_py_to_json.py │ ├── readme.md │ └── rename.py └── utils/ ├── __init__.py ├── generate_info.py ├── misc.py ├── print_formatter.py └── recorders/ ├── __init__.py ├── curve_drawer.py ├── excel_recorder.py ├── metric_recorder.py └── txt_recorder.py