psnr-hvsm


Namepsnr-hvsm JSON
Version 0.2.1 PyPI version JSON
download
home_page
SummaryAccelerated implementations of the PSNR-HVS, PSNR-HVS-M, PSNR-HA and PSNR-HMA image metrics for NumPy and PyTorch
upload_time2023-10-15 16:45:45
maintainer
docs_urlNone
author
requires_python<4,>=3.7
licenseMIT
keywords psnr hvs video image metric pytorch
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PSNR-HVS-M, PSNR-HA and PSNR-HMA metrics for NumPy and PyTorch

[![cibuildwheel](https://github.com/lyckantropen/psnr_hvsm/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/lyckantropen/psnr_hvsm/actions)
[![python_versions](https://img.shields.io/pypi/pyversions/psnr_hvsm)](https://pypi.org/project/psnr-hvsm/)
[![pypi](https://img.shields.io/pypi/v/psnr_hvsm)](https://pypi.org/project/psnr-hvsm/)
[![license](https://img.shields.io/github/license/lyckantropen/psnr_hvsm)](https://github.com/lyckantropen/psnr_hvsm/blob/main/LICENSE)

Accelerated Python package for computing several image metrics based on human
perception with backends in NumPy, PyTorch and C++.

This is an implementation of the PSNR-HVS, PSNR-HVS-M, PSNR-HA and PSNR-HMA
metrics developed by
[Nikolay Ponomarenko](http://www.ponomarenko.info/psnrhvsm).

The values produced by this library have been cross-checked against the results
within the
[TID2013 dataset](https://www.sciencedirect.com/science/article/pii/S0923596514001490).
(See the folder [`tid2013_results`](tid2013_results).) The only difference is
that this library follows the common convention that PSNR for identical signals
equals 100.0.

_A miniscule discrepancy for PSNR-HMA (<0.01dB on average) is under
investigation._

## Bibliography

- [Egiazarian, Karen, et al. "New full-reference quality metrics based on HVS." Proceedings of the Second International Workshop on Video Processing and Quality Metrics. Vol. 4. 2006.](https://www.researchgate.net/profile/Vladimir_Lukin2/publication/251229783_A_NEW_FULL-REFERENCE_QUALITY_METRICS_BASED_ON_HVS/links/0046351f669a9c1869000000.pdf)
- [Ponomarenko, Nikolay, et al. "On between-coefficient contrast masking of DCT basis functions." Proceedings of the third international workshop on video processing and quality metrics. Vol. 4. 2007.](https://www.researchgate.net/profile/Vladimir-Lukin-4/publication/242309240_On_between-coefficient_contrast_masking_of_DCT_basis_functions/links/0c96052442be7c3176000000/On-between-coefficient-contrast-masking-of-DCT-basis-functions.pdf)
- [Ponomarenko, Nikolay, et al. "Modified image visual quality metrics for contrast change and mean shift accounting." 2011 11th International Conference The Experience of Designing and Application of CAD Systems in Microelectronics (CADSM). IEEE, 2011.](https://ponomarenko.info/papers/psnrhma.pdf)

## Installation

`psnr_hvsm` supports Python 3.7-3.11. Packages are distributed on PyPi. Be sure
to have an up-to-date pip to be able to install the correct packages on Linux:

```bash
python -m pip install --upgrade pip
```

```bash
pip install psnr_hvsm
```

## Usage

### Command line

Command line support is an extra that pulls `imageio`:

```bash
pip install psnr_hvsm[command_line]
```

```bash
python -m psnr_hvsm original.png distorted.png
```

#### Choosing a backend

The backend can be set by setting the `PSNR_HVSM_BACKEND` environment variable.
Valid backends are:

- `numpy` - pure NumPy
- `cpp` - C++ using FFTW3
- `torch` - PyTorch; install as `psnr_hvsm[torch]` to install PyTorch as well

```bash
export PSNR_HVSM_BACKEND=torch
python -m psnr_hvsm original.png distorted.png
```

The default device for PyTorch is `cuda` but it can be changed by setting the
`PSNR_HVSM_TORCH_DEVICE` environment variable.

### As a library

The function `psnr_hvs_hvsm` accepts images as single-channel floating-point
NumPy arrays. The images need to be normalised, i.e. the values need to be in
the range `[0,1]`. This can be achieved by converting the image to `float` and
dividing by the maximum value given the bit depth. For 8 bits per component this
is 255.

The images must be padded to a multiple of 8 in each dimension.

```python
from imageio import imread
from psnr_hvsm import psnr_hvs_hvsm, bt601ycbcr

image1 = imread('tests/baboon.png').astype(float) / 255
image2 = imread('tests/baboon_msk.png').astype(float) / 255

image1_y, *_ = bt601ycbcr(image1)
image2_y, *_ = bt601ycbcr(image2)

psnr_hvs, psnr_hvsm = psnr_hvs_hvsm(image1, image2)

print(psnr_hvs, psnr_hvsm)
```

```bash
34.427054505764424 51.64722121999962
```

If you need to measure PSNR-HVS and PSNR-HVS-M on an RGB image, you need to
convert it to an YUV colorspace and pass in only the luma component.

### PyTorch support

The PyTorch backend can be used for use with gradient descent algorithms and
computation on GPUs. In order to use the PyTorch backend, either install the
package with the `torch` extra:

```bash
pip install psnr_hvsm[torch]
```

If your PyTorch installation was manual, you need
[`torch-dct`](https://github.com/zh217/torch-dct) in order to use the PyTorch
backend:

```bash
pip install "torch-dct>=0.1.6"
```

An important distinction is that the functions that expect 3-channel input now
expect `(...,C,H,W)` format in the PyTorch implementation. The PyTorch backend
can be enabled by importing it directly from `psnr_hvsm.torch`:

```python
import torch
from imageio import imread
from psnr_hvsm.torch import psnr_hvs_hvsm, bt601ycbcr

image1 = imread('tests/baboon.png').astype(float) / 255
image2 = imread('tests/baboon_msk.png').astype(float) / 255

image1 = torch.tensor(image1, device='cuda').moveaxis(-1, -3)  # convert to (N,C,H,W) format
image2 = torch.tensor(image2, device='cuda').moveaxis(-1, -3)  # convert to (N,C,H,W) format

image1_y, *_ = bt601ycbcr(image1)
image2_y, *_ = bt601ycbcr(image2)

psnr_hvs, psnr_hvsm = psnr_hvs_hvsm(image1_y, image2_y)
```

Alternatively, set the `PSNR_HVSM_BACKEND` environment variable to `torch`:

```python
import os
os.environ['PSNR_HVSM_BACKEND'] = 'torch'

from psnr_hvsm import psnr_hvs_hvsm
# rest of code
# ...
```

### Computing metrics for the TID2013 dataset

If you have a copy of the
[TID2013 dataset](https://www.sciencedirect.com/science/article/pii/S0923596514001490),
you can re-verify the metrics for yourself:

```bash
python -m psnr_hvsm.tid2013_metrics D:\tid2013\ .\tid2013_results\
```

### Other exported functions

- `hvs_hvsm_mse_tiles` - compute HVS and HVS-M scores on all 8x8 tiles in the
  images, returns an array of numbers
- `hvs_hvsm_mse` - compute average HVS and HVS-M scores

## Building

### Dependencies

`psnr_hvsm` has several dependencies:

- [FFTW3 >= 3.3.9](http://www.fftw.org/)
- [pybind11](https://github.com/pybind/pybind11)
- [xtensor](https://github.com/xtensor-stack/xtensor)
- [xtensor-python](https://github.com/xtensor-stack/xtensor-python)

FFTW3 is automatically resolved by CMake and the rest can be installed by
creating a `conda` environment using the provided YAML file:

```bash
conda env create -f psnr_hvsm-dev.yml
```

### Development mode

To install in development mode:

```bash
pip install --upgrade -r requirements.txt
```

### Creating Python wheel

```bash
pip install --upgrade -r requirements-build.txt
python setup.py bdist_wheel
```

### Running tests on different versions of Python using tox

```bash
pip install --upgrade -r requirements-tox.txt
tox --parallel auto
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "psnr-hvsm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": "",
    "keywords": "psnr hvs video image metric pytorch",
    "author": "",
    "author_email": "Karol Trojanowski <trojanowski.ifuj@gmail.com>",
    "download_url": "",
    "platform": null,
    "description": "# PSNR-HVS-M, PSNR-HA and PSNR-HMA metrics for NumPy and PyTorch\n\n[![cibuildwheel](https://github.com/lyckantropen/psnr_hvsm/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/lyckantropen/psnr_hvsm/actions)\n[![python_versions](https://img.shields.io/pypi/pyversions/psnr_hvsm)](https://pypi.org/project/psnr-hvsm/)\n[![pypi](https://img.shields.io/pypi/v/psnr_hvsm)](https://pypi.org/project/psnr-hvsm/)\n[![license](https://img.shields.io/github/license/lyckantropen/psnr_hvsm)](https://github.com/lyckantropen/psnr_hvsm/blob/main/LICENSE)\n\nAccelerated Python package for computing several image metrics based on human\nperception with backends in NumPy, PyTorch and C++.\n\nThis is an implementation of the PSNR-HVS, PSNR-HVS-M, PSNR-HA and PSNR-HMA\nmetrics developed by\n[Nikolay Ponomarenko](http://www.ponomarenko.info/psnrhvsm).\n\nThe values produced by this library have been cross-checked against the results\nwithin the\n[TID2013 dataset](https://www.sciencedirect.com/science/article/pii/S0923596514001490).\n(See the folder [`tid2013_results`](tid2013_results).) The only difference is\nthat this library follows the common convention that PSNR for identical signals\nequals 100.0.\n\n_A miniscule discrepancy for PSNR-HMA (<0.01dB on average) is under\ninvestigation._\n\n## Bibliography\n\n- [Egiazarian, Karen, et al. \"New full-reference quality metrics based on HVS.\" Proceedings of the Second International Workshop on Video Processing and Quality Metrics. Vol. 4. 2006.](https://www.researchgate.net/profile/Vladimir_Lukin2/publication/251229783_A_NEW_FULL-REFERENCE_QUALITY_METRICS_BASED_ON_HVS/links/0046351f669a9c1869000000.pdf)\n- [Ponomarenko, Nikolay, et al. \"On between-coefficient contrast masking of DCT basis functions.\" Proceedings of the third international workshop on video processing and quality metrics. Vol. 4. 2007.](https://www.researchgate.net/profile/Vladimir-Lukin-4/publication/242309240_On_between-coefficient_contrast_masking_of_DCT_basis_functions/links/0c96052442be7c3176000000/On-between-coefficient-contrast-masking-of-DCT-basis-functions.pdf)\n- [Ponomarenko, Nikolay, et al. \"Modified image visual quality metrics for contrast change and mean shift accounting.\" 2011 11th International Conference The Experience of Designing and Application of CAD Systems in Microelectronics (CADSM). IEEE, 2011.](https://ponomarenko.info/papers/psnrhma.pdf)\n\n## Installation\n\n`psnr_hvsm` supports Python 3.7-3.11. Packages are distributed on PyPi. Be sure\nto have an up-to-date pip to be able to install the correct packages on Linux:\n\n```bash\npython -m pip install --upgrade pip\n```\n\n```bash\npip install psnr_hvsm\n```\n\n## Usage\n\n### Command line\n\nCommand line support is an extra that pulls `imageio`:\n\n```bash\npip install psnr_hvsm[command_line]\n```\n\n```bash\npython -m psnr_hvsm original.png distorted.png\n```\n\n#### Choosing a backend\n\nThe backend can be set by setting the `PSNR_HVSM_BACKEND` environment variable.\nValid backends are:\n\n- `numpy` - pure NumPy\n- `cpp` - C++ using FFTW3\n- `torch` - PyTorch; install as `psnr_hvsm[torch]` to install PyTorch as well\n\n```bash\nexport PSNR_HVSM_BACKEND=torch\npython -m psnr_hvsm original.png distorted.png\n```\n\nThe default device for PyTorch is `cuda` but it can be changed by setting the\n`PSNR_HVSM_TORCH_DEVICE` environment variable.\n\n### As a library\n\nThe function `psnr_hvs_hvsm` accepts images as single-channel floating-point\nNumPy arrays. The images need to be normalised, i.e. the values need to be in\nthe range `[0,1]`. This can be achieved by converting the image to `float` and\ndividing by the maximum value given the bit depth. For 8 bits per component this\nis 255.\n\nThe images must be padded to a multiple of 8 in each dimension.\n\n```python\nfrom imageio import imread\nfrom psnr_hvsm import psnr_hvs_hvsm, bt601ycbcr\n\nimage1 = imread('tests/baboon.png').astype(float) / 255\nimage2 = imread('tests/baboon_msk.png').astype(float) / 255\n\nimage1_y, *_ = bt601ycbcr(image1)\nimage2_y, *_ = bt601ycbcr(image2)\n\npsnr_hvs, psnr_hvsm = psnr_hvs_hvsm(image1, image2)\n\nprint(psnr_hvs, psnr_hvsm)\n```\n\n```bash\n34.427054505764424 51.64722121999962\n```\n\nIf you need to measure PSNR-HVS and PSNR-HVS-M on an RGB image, you need to\nconvert it to an YUV colorspace and pass in only the luma component.\n\n### PyTorch support\n\nThe PyTorch backend can be used for use with gradient descent algorithms and\ncomputation on GPUs. In order to use the PyTorch backend, either install the\npackage with the `torch` extra:\n\n```bash\npip install psnr_hvsm[torch]\n```\n\nIf your PyTorch installation was manual, you need\n[`torch-dct`](https://github.com/zh217/torch-dct) in order to use the PyTorch\nbackend:\n\n```bash\npip install \"torch-dct>=0.1.6\"\n```\n\nAn important distinction is that the functions that expect 3-channel input now\nexpect `(...,C,H,W)` format in the PyTorch implementation. The PyTorch backend\ncan be enabled by importing it directly from `psnr_hvsm.torch`:\n\n```python\nimport torch\nfrom imageio import imread\nfrom psnr_hvsm.torch import psnr_hvs_hvsm, bt601ycbcr\n\nimage1 = imread('tests/baboon.png').astype(float) / 255\nimage2 = imread('tests/baboon_msk.png').astype(float) / 255\n\nimage1 = torch.tensor(image1, device='cuda').moveaxis(-1, -3)  # convert to (N,C,H,W) format\nimage2 = torch.tensor(image2, device='cuda').moveaxis(-1, -3)  # convert to (N,C,H,W) format\n\nimage1_y, *_ = bt601ycbcr(image1)\nimage2_y, *_ = bt601ycbcr(image2)\n\npsnr_hvs, psnr_hvsm = psnr_hvs_hvsm(image1_y, image2_y)\n```\n\nAlternatively, set the `PSNR_HVSM_BACKEND` environment variable to `torch`:\n\n```python\nimport os\nos.environ['PSNR_HVSM_BACKEND'] = 'torch'\n\nfrom psnr_hvsm import psnr_hvs_hvsm\n# rest of code\n# ...\n```\n\n### Computing metrics for the TID2013 dataset\n\nIf you have a copy of the\n[TID2013 dataset](https://www.sciencedirect.com/science/article/pii/S0923596514001490),\nyou can re-verify the metrics for yourself:\n\n```bash\npython -m psnr_hvsm.tid2013_metrics D:\\tid2013\\ .\\tid2013_results\\\n```\n\n### Other exported functions\n\n- `hvs_hvsm_mse_tiles` - compute HVS and HVS-M scores on all 8x8 tiles in the\n  images, returns an array of numbers\n- `hvs_hvsm_mse` - compute average HVS and HVS-M scores\n\n## Building\n\n### Dependencies\n\n`psnr_hvsm` has several dependencies:\n\n- [FFTW3 >= 3.3.9](http://www.fftw.org/)\n- [pybind11](https://github.com/pybind/pybind11)\n- [xtensor](https://github.com/xtensor-stack/xtensor)\n- [xtensor-python](https://github.com/xtensor-stack/xtensor-python)\n\nFFTW3 is automatically resolved by CMake and the rest can be installed by\ncreating a `conda` environment using the provided YAML file:\n\n```bash\nconda env create -f psnr_hvsm-dev.yml\n```\n\n### Development mode\n\nTo install in development mode:\n\n```bash\npip install --upgrade -r requirements.txt\n```\n\n### Creating Python wheel\n\n```bash\npip install --upgrade -r requirements-build.txt\npython setup.py bdist_wheel\n```\n\n### Running tests on different versions of Python using tox\n\n```bash\npip install --upgrade -r requirements-tox.txt\ntox --parallel auto\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Accelerated implementations of the PSNR-HVS, PSNR-HVS-M, PSNR-HA and PSNR-HMA image metrics for NumPy and PyTorch",
    "version": "0.2.1",
    "project_urls": {
        "Homepage": "https://github.com/lyckantropen/psnr_hvsm"
    },
    "split_keywords": [
        "psnr",
        "hvs",
        "video",
        "image",
        "metric",
        "pytorch"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b95b8a1072d1598c07e5cdf5dd5ec6d4d433097547f6aa67af4228f9f754befc",
                "md5": "921b4d6d876f7e0bdc1b6d54bb79207e",
                "sha256": "bfefac5317c0e796d5f0470e14a231d13d742fb211733f61cd0acb306de31376"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "921b4d6d876f7e0bdc1b6d54bb79207e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 5300572,
            "upload_time": "2023-10-15T16:45:45",
            "upload_time_iso_8601": "2023-10-15T16:45:45.028697Z",
            "url": "https://files.pythonhosted.org/packages/b9/5b/8a1072d1598c07e5cdf5dd5ec6d4d433097547f6aa67af4228f9f754befc/psnr_hvsm-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c15c8ec4f10adbf5345106716f24e06b66d03e8507a32a757b63f737e886b0bf",
                "md5": "85372b905793c938b25998d0bf97a690",
                "sha256": "0192e61eeca98f1dfcd8531b0bc4876b319536733d32425eebcbdd064c70aa3d"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85372b905793c938b25998d0bf97a690",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 2434278,
            "upload_time": "2023-10-15T16:45:47",
            "upload_time_iso_8601": "2023-10-15T16:45:47.357286Z",
            "url": "https://files.pythonhosted.org/packages/c1/5c/8ec4f10adbf5345106716f24e06b66d03e8507a32a757b63f737e886b0bf/psnr_hvsm-0.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "541644fc1d34d007b58a8b1145f7335bf658d01ce910880e595ca4d21d162e0d",
                "md5": "520a38963c54001219703a6bc2d77d81",
                "sha256": "759da0f4a6fb0565a2ba27f4665d38a7ceb64f6b4b5c72d1cbcf2c27e711df89"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "520a38963c54001219703a6bc2d77d81",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 5302933,
            "upload_time": "2023-10-15T16:45:49",
            "upload_time_iso_8601": "2023-10-15T16:45:49.643012Z",
            "url": "https://files.pythonhosted.org/packages/54/16/44fc1d34d007b58a8b1145f7335bf658d01ce910880e595ca4d21d162e0d/psnr_hvsm-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a0886bd20dda454d65c3c1786b4bc684a1a5674f815d8172ab4612a0864be22",
                "md5": "789d422d2b180c664d008dd5a06fa955",
                "sha256": "d6e2af2bf02e18050eed43630368da8d241246ae4b6f7ea2e23740a8d06d072d"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "789d422d2b180c664d008dd5a06fa955",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 2435077,
            "upload_time": "2023-10-15T16:45:51",
            "upload_time_iso_8601": "2023-10-15T16:45:51.939305Z",
            "url": "https://files.pythonhosted.org/packages/2a/08/86bd20dda454d65c3c1786b4bc684a1a5674f815d8172ab4612a0864be22/psnr_hvsm-0.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c32cc55f274244b4c41737931c00dbc798c1cca2a868cdb4ec24caaa0916c213",
                "md5": "85591cd51d402c179f8355ba404bf159",
                "sha256": "7f1d3b94be62d03a6dada1f207e29a236e2f09622c2d376551bb11f0fc400dcc"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85591cd51d402c179f8355ba404bf159",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 5299934,
            "upload_time": "2023-10-15T16:45:54",
            "upload_time_iso_8601": "2023-10-15T16:45:54.277165Z",
            "url": "https://files.pythonhosted.org/packages/c3/2c/c55f274244b4c41737931c00dbc798c1cca2a868cdb4ec24caaa0916c213/psnr_hvsm-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53273231444cec3b3d73391d38dc05c66bfc09a4f87a70e8ebe7b209bf4ed061",
                "md5": "859ee6695997c50a29cb8c6d92f1dd79",
                "sha256": "6cac0a360e638867c8985f6562618fbd12dc9829852b66e190925f5071be6cfe"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "859ee6695997c50a29cb8c6d92f1dd79",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 2434459,
            "upload_time": "2023-10-15T16:45:55",
            "upload_time_iso_8601": "2023-10-15T16:45:55.953681Z",
            "url": "https://files.pythonhosted.org/packages/53/27/3231444cec3b3d73391d38dc05c66bfc09a4f87a70e8ebe7b209bf4ed061/psnr_hvsm-0.2.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2961cb265abe96fa143f274e11f4c59a4a0da396162774e0596e04772a73de9d",
                "md5": "d92a65a8f336f9443d08d312138f14a7",
                "sha256": "1d6be6e82e49e7f00660051607a1f327c9c65376ee56e39ba8081b370e4f3814"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d92a65a8f336f9443d08d312138f14a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 5301822,
            "upload_time": "2023-10-15T16:45:58",
            "upload_time_iso_8601": "2023-10-15T16:45:58.186750Z",
            "url": "https://files.pythonhosted.org/packages/29/61/cb265abe96fa143f274e11f4c59a4a0da396162774e0596e04772a73de9d/psnr_hvsm-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb6abb03da06508cfe822478da53db212630700870a825f53b39cac94afba0c7",
                "md5": "1041add4ed089beb2ec3b99be67ee9f4",
                "sha256": "ab7e82da90ffbaace5c7abdfdf78ec4525d583bd6a6a1a6e4479ddc8eaacb196"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1041add4ed089beb2ec3b99be67ee9f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 2434283,
            "upload_time": "2023-10-15T16:46:00",
            "upload_time_iso_8601": "2023-10-15T16:46:00.459240Z",
            "url": "https://files.pythonhosted.org/packages/fb/6a/bb03da06508cfe822478da53db212630700870a825f53b39cac94afba0c7/psnr_hvsm-0.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "359c1547d95bf34c32061a1f562dfabe2ab063b3ac960471a824740bd699d323",
                "md5": "b2bd2a68d9cef440f90806acb89b2d5f",
                "sha256": "6287416add084bf4ed1e7402fd1a2c0b1fed6a890dfd85696f12ca80b199dcd7"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2bd2a68d9cef440f90806acb89b2d5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 5302109,
            "upload_time": "2023-10-15T16:46:02",
            "upload_time_iso_8601": "2023-10-15T16:46:02.686451Z",
            "url": "https://files.pythonhosted.org/packages/35/9c/1547d95bf34c32061a1f562dfabe2ab063b3ac960471a824740bd699d323/psnr_hvsm-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10577a2e9cd6c6471d81f8722994e5bf89d78048468ba58adcde5a8719bdf9dc",
                "md5": "119d40b82d12588b890e602594c95bb8",
                "sha256": "421c649e5b7d817c9588fbd1727761f33e03a8c5659b896bb4d3afb934ac241e"
            },
            "downloads": -1,
            "filename": "psnr_hvsm-0.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "119d40b82d12588b890e602594c95bb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 2434118,
            "upload_time": "2023-10-15T16:46:04",
            "upload_time_iso_8601": "2023-10-15T16:46:04.983024Z",
            "url": "https://files.pythonhosted.org/packages/10/57/7a2e9cd6c6471d81f8722994e5bf89d78048468ba58adcde5a8719bdf9dc/psnr_hvsm-0.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-15 16:45:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lyckantropen",
    "github_project": "psnr_hvsm",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "psnr-hvsm"
}
        
Elapsed time: 0.12343s