├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── brisque ├── __init__.py ├── brisque.py ├── models │ ├── __init__.py │ ├── normalize.pickle │ └── svm.txt └── tests │ ├── __init__.py │ ├── sample-image.jpg │ └── test_brisque.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/README.md -------------------------------------------------------------------------------- /brisque/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/__init__.py -------------------------------------------------------------------------------- /brisque/brisque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/brisque.py -------------------------------------------------------------------------------- /brisque/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/models/__init__.py -------------------------------------------------------------------------------- /brisque/models/normalize.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/models/normalize.pickle -------------------------------------------------------------------------------- /brisque/models/svm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/models/svm.txt -------------------------------------------------------------------------------- /brisque/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brisque/tests/sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/tests/sample-image.jpg -------------------------------------------------------------------------------- /brisque/tests/test_brisque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/brisque/tests/test_brisque.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | # Inside of setup.cfg 2 | [metadata] 3 | description_file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rehanguha/brisque/HEAD/setup.py --------------------------------------------------------------------------------