├── .dockerignore ├── .github └── workflows │ └── ruff.yml ├── .gitignore ├── Dockerfile.rocm ├── LICENSE ├── README.md ├── docker-compose.yaml ├── pyproject.toml ├── scripts ├── __init__.py ├── encode.py ├── metrics.py ├── plot.py ├── scores.py └── stats.py └── static ├── butter_distance_plot.svg ├── ssimu2_hmean_plot.svg └── wxpsnr_plot.svg /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.rocm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/Dockerfile.rocm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/scripts/encode.py -------------------------------------------------------------------------------- /scripts/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/scripts/metrics.py -------------------------------------------------------------------------------- /scripts/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/scripts/plot.py -------------------------------------------------------------------------------- /scripts/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/scripts/scores.py -------------------------------------------------------------------------------- /scripts/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/scripts/stats.py -------------------------------------------------------------------------------- /static/butter_distance_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/static/butter_distance_plot.svg -------------------------------------------------------------------------------- /static/ssimu2_hmean_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/static/ssimu2_hmean_plot.svg -------------------------------------------------------------------------------- /static/wxpsnr_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psy-ex/metrics/HEAD/static/wxpsnr_plot.svg --------------------------------------------------------------------------------