vIQA


NamevIQA JSON
Version 1.12.0 PyPI version JSON
download
home_pageNone
SummaryA Python package for volumetric image quality assessment.
upload_time2024-09-04 17:02:43
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseBSD-3-Clause
keywords iqa image quality assessment volumetric data image comparison ct computed tomography
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">
<img src="https://raw.githubusercontent.com/3dct/vIQA/main/branding/logo/Logo_vIQA_wo-text.svg" width="300">

vIQA &mdash; volumetric Image Quality Assessment
</h1><br>

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![PyPI - Version](https://img.shields.io/pypi/v/vIQA)](https://pypi.org/project/vIQA/latest)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/vIQA)](https://pypi.org/project/vIQA/)
[![PyPI - License](https://img.shields.io/pypi/l/vIQA)](https://pypi.org/project/vIQA/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/vIQA)](https://pypi.org/project/vIQA/)
[![Documentation GH Action](https://github.com/3dct/vIQA/actions/workflows/documentation.yaml/badge.svg)](https://3dct.github.io/vIQA/)
[![Build GH Action](https://github.com/3dct/vIQA/actions/workflows/build_wheels_and_publish.yaml/badge.svg)](https://github.com/3dct/vIQA/actions/workflows/build_wheels_and_publish.yaml)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/3dct/vIQA/main.svg)](https://results.pre-commit.ci/latest/github/3dct/vIQA/main)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/3dct/vIQA/main)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](code_of_conduct.md)

## Table of Contents

* [Overview](#overview)
* [Documentation](#documentation)
* [Requirements](#requirements)
* [Installation](#installation)
* [Usage](#usage)
  * [Workflow](#workflow)
  * [Examples](#examples)
* [TODO](#todo)
* [License](#license)
* [Contacts](#contacts)
* [References](#references)

vIQA provides an extensive assessment suite for image quality of 2D-images or 3D-volumes as a python package.
Image Quality Assessment (IQA) is a field of research that aims to quantify the quality of an image. This is usually
done by comparing the image to a reference image (full-reference metrics), but can also be done by evaluating the image
without a reference (no-reference metrics). The reference image is usually the original image, but can also be
another image that is considered to be of high quality. The comparison is done by calculating a metric that quantifies
the difference between the two images or for the image itself. These quality metrics are used in various fields, such as
medical imaging, computer vision, and image processing. For example the efficiency of image compression algorithms can be
evaluated by comparing the compressed image to the original image.
This package implements several metrics to compare two images or volumes using different IQA metrics. In addition, some
metrics are implemented that can be used to evaluate a single image or volume.

The metrics used are:
- Peak Signal to Noise Ratio (PSNR)
- Root Mean Square Error (RMSE)
- Universal Quality Index (UQI) [^1]
- Structured Similarity (SSIM) [^2]
- Multi-Scale Structural Similarity (MS-SSIM) [^3]
- Feature Similarity Index (FSIM) [^4]
- Visual Information Fidelity in *pixel* domain (VIFp) [^5]

> [!CAUTION]
> The calculated values for VIFp are probably not correct in this implementation. Those values should be treated with
> caution as further testing is required.

- Visual Saliency Index (VSI) [^6]

> [!WARNING]
> The original metric supports RGB images only. This implementation can work with
> grayscale images by copying the luminance channel 3 times.

- Most Apparent Distortion (MAD) [^7]
- Gradient Similarity Measure (GSM) [^8]

> [!CAUTION]
> This metric is not yet tested. The metric should be only used for experimental purposes.

- Contrast to Noise Ratio (CNR) [^9]
- Signal to Noise Ratio (SNR)
- Q-Measure [^10]

## Overview

| Metric    | Name                                          | Type | Dimensional behaviour | Colour Behaviour | Range (different/worst - identical/best) | Tested | Validated | Reference |
|-----------|-----------------------------------------------|------|-----------------------|------------------|------------------------------------------|--------|-----------|-----------|
| PSNR      | Peak Signal to Noise Ratio                    | FR   | 3D native             | ✔️               | $[0, \infty)$                            | ✔️     | ✔️        | &mdash;   |
| RMSE      | Root Mean Square Error                        | FR   | 3D native             | ✔️               | $(\infty, 0]$                            | ✔️     | ✔️        | &mdash;   |
| UQI [^a]  | Universal Quality Index                       | FR   | 3D native             | (✔️) [^b]        | $[-1, 1]$                                | ❌      | (✔️) [^c] | [^1]      |
| SSIM      | Structured Similarity                         | FR   | 3D native             | (✔️) [^b]        | $[-1, 1]$ [^d]                           | ✔️     | ✔️        | [^2]      |
| MS-SSIM   | Multi-Scale Structural Similarity             | FR   | 3D slicing            | ❓                | $[0, 1]$                                 | ❌      | ✔️        | [^3]      |
| FSIM      | Feature Similarity Index                      | FR   | 3D slicing            | ✔️               | $[0, 1]$                                 | ✔️     | ✔️        | [^4]      |
| VIFp      | Visual Information Fidelity in *pixel* domain | FR   | 3D slicing            | ❓                | $[0, \infty)$ [^e]                       | ❌      | ❌         | [^5]      |
| VSI       | Visual Saliency Index                         | FR   | 3D slicing            | ✔️ [^f]          | $[0, 1]$                                 | ❌      | ❌         | [^6]      |
| MAD       | Most Apparent Distortion                      | FR   | 3D slicing            |                  | $[0, \infty)$                            | ✔️     | ❌         | [^7]      |
| GSM       | Gradient Similarity                           | FR   | 3D native or slicing  |                  | $[0, 1]$                                 | ❌      | ❌         | [^8]      |
| CNR       | Contrast to Noise Ratio                       | NR   | 3D native             |                  | $[0, \infty)$                            | ✔️     | ❌         | [^9]      |
| SNR       | Signal to Noise Ratio                         | NR   | 3D native             | ✔️               | $[0, \infty)$                            | ✔️     | ❌         | &mdash;   |
| Q-Measure | Q-Measure                                     | NR   | 3D only [^g]          | ❌                | $[0, \infty)$                            | ❌      | ❌         | [^10]     |

[^a]: UQI is a special case of SSIM. Also see [^2].
[^b]: The metric is calculated channel-wise for color images. The values are then averaged after weighting.
[^c]: As UQI is a special case of SSIM, the validation of SSIM is also valid for UQI.
[^d]: The range for SSIM is given as $[-1, 1]$, but is usually $[0, 1]$ in practice.
[^e]: Normally $[0, 1]$, but can be higher than 1 for modified images with higher
contrast than reference images.
[^f]: The original metric supports RGB images only. This implementation can work
with grayscale images by copying the luminance channel 3 times.
[^g]: The Q-Measure is a special metric designed for CT images. Therefore it only works
with 3D volumes.

## Documentation
The API documentation can be found [here](https://3dct.github.io/vIQA/).

## Requirements
The following packages have to be installed:
- matplotlib
- nibabel
- numpy
- piq
- pytorch
- scikit-image
- scipy
- tqdm
- (jupyter) if you want to use the provided notebook

## Installation
Use either `pip`
```
pip install viqa
```

or `conda`
```
conda install -c conda-forge viqa
```

> [!IMPORTANT]
> The package is currently in development and not yet available on conda-forge.


## Usage

### Workflow
Images are first loaded from .raw files or .mhd files and their corresponding .raw file, normalized to the chosen data
range (if the parameter `normalize=True` is set) and then compared. The scores are then calculated and can be printed.
If using paths file names need to be given with the bit depth denoted as a suffix (e.g. `_8bit.raw`, `_16bit.mhd`) and
the dimensions of the images need to be given in the file name (e.g. `512x512x512`). The images are assumed to be
grayscale. Treatment of color images is planned for later versions.
The metrics are implemented to calculate the scores for an 8-bit data range (0-255) per default. For some metrics the
resulting score is different for different data ranges. When calculating several metrics for the same image, the same
data range should be used for all metrics. The data range can be changed by setting the parameter `data_range` for each
metric. This parameter primarily affects the loading behaviour of the class instances when not using the
`vIQA.utils.load_data` function directly as described further below, but for some metrics setting the data range is
necessary to calculate the score (e.g. PSNR).

### Examples
Better:

```python
import viqa
from viqa import load_data, normalize_data

## load images
file_path_img_r = 'path/to/reference_image_8bit_512x512x512.raw'
file_path_img_m = 'path/to/modified_image_8bit_512x512x512.raw'
img_r = load_data(
  file_path_img_r,
  data_range=1,
  normalize=False,
)  # data_range ignored due to normalize=False
img_m = load_data(file_path_img_m)  # per default: normalize=False
# --> both images are loaded as 8-bit images

# calculate and print RMSE score
rmse = viqa.RMSE()
score_rmse = rmse.score(img_r, img_m)  # RMSE does not need any parameters
rmse.print_score(decimals=2)

# normalize to 16-bit
img_r = normalize_data(img_r, data_range_output=(0, 65535))
img_m = load_data(img_m, data_range=65535, normalize=True)
# --> both functions have the same effect

# calculate and print PSNR score
psnr = viqa.PSNR(data_range=65535)  # PSNR needs data_range to calculate the score
score_psnr = psnr.score(img_r, img_m)
psnr.print_score(decimals=2)

# set optional parameters for MAD as dict
calc_parameters = {
    'block_size': 16,
    'block_overlap': 0.75,
    'beta_1': 0.467,
    'beta_2': 0.130,
    'luminance_function': {'b': 0, 'k': 0.02874, 'gamma': 2.2},
    'orientations_num': 4,
    'scales_num': 5,
    'weights': [0.5, 0.75, 1, 5, 6]
}

# calculate and print MAD score
mad = viqa.MAD(data_range=65535)  # MAD needs data_range to calculate the score
score_mad = mad.score(img_r, img_m, dim=2, **calc_parameters)
mad.print_score(decimals=2)
```
Possible, but worse (recommended only if you want to calculate a single metric):

```python
import viqa

file_path_img_r = 'path/to/reference_image_512x512x512_16bit.raw'
file_path_img_m = 'path/to/modified_image_512x512x512_16bit.raw'

load_parameters = {'data_range': 1, 'normalize': True}
# data_range is set to 1 to normalize the images
# to 0-1 and for calculation, if not set 255 would
# be used as default for loading and calculating
# the score

psnr = viqa.PSNR(**load_parameters)  # load_parameters necessary due to direct loading by class
# also PSNR needs data_range to calculate the score
# if images would not be normalized, data_range should be
# 65535 for 16-bit images for correct calculation
score = psnr.score(file_path_img_r, file_path_img_m)
# --> images are loaded as 16-bit images and normalized to 0-1 via the `load_data` function
#     called by the score method
psnr.print_score(decimals=2)
```

> [!TIP]
> It is recommended to load the images directly with the `vIQA.utils.load_data` function first and then pass the image
> arrays to the metrics functions. You can also pass the image paths directly to the metrics functions. In this case,
> the images will be loaded with the given parameters. This workflow is only recommended if you want to calculate a
> single metric.

> [!IMPORTANT]
> The current recommended usage files are: [`Image_Comparison.ipynb`](Image_Comparison.ipynb) and [`Image_comparison_batch.ipynb`](Image_comparison_batch.ipynb).

For more examples, see the provided Jupyter notebooks and the documentation under [API Reference](https://3dct.github.io/vIQA/api_reference.html).

<!-- ## Benchmark TODO: add benchmark results and instructions -->

## TODO
- [ ] Add metrics
    - [ ] Add SFF/IFS
    - [ ] Add Ma
    - [ ] Add PI
    - [ ] Add NIQE
- [ ] Add tests
    - [x] Add tests for RMSE
    - [x] Add tests for PSNR
    - [x] Add tests for SSIM
    - [ ] Add tests for MSSSIM
    - [x] Add tests for FSIM
    - [ ] Add tests for VSI
    - [ ] Add tests for VIF
    - [x] Add tests for MAD
    - [ ] Add tests for GSM
    - [x] Add tests for CNR
    - [x] Add tests for SNR
    - [ ] Add tests for Q-Measure
- [ ] Add support for different data ranges
- [ ] Validate metrics
- [ ] Add color image support
- [x] Add support for printing values
  - [ ] Add support for .txt files
  - [x] Add support for .csv files
- [x] Add support for fusions
  - [x] Add support for linear combination
  - [ ] Add support for decision fusion

<!-- ## Citation TODO: add citation instructions -->

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for information on how to contribute to the
project and [development guide](https://3dct.github.io/vIQA/developer_guide.html) for
further information.

## License
**BSD 3-Clause**

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
   contributors may be used to endorse or promote products derived from
   this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## Contacts
Lukas Behammer, [lukas.behammer@fh-wels.at](mailto:lukas.behammer@fh-wels.at)

## References
[^1]: Wang, Z., & Bovik, A. C. (2002). A Universal Image Quality Index. IEEE SIGNAL
        PROCESSING LETTERS, 9(3). https://doi.org/10.1109/97.995823
[^2]: Wang, Z., Bovik, A. C., Sheikh, H. R., & Simoncelli, E. P. (2004). Image quality
assessment: From error visibility to structural similarity. IEEE Transactions on
Image Processing, 13(4), 600–612. https://doi.org/10.1109/TIP.2003.819861
[^3]: Wang, Z., Simoncelli, E. P., & Bovik, A. C. (2003). Multi-scale structural
similarity for image quality assessment. The Thirty-Seventh Asilomar Conference on
Signals, Systems & Computers, 1298–1402. https://doi.org/10.1109/ACSSC.2003.1292216
[^4]: Zhang, L., Zhang, L., Mou, X., & Zhang, D. (2011). FSIM: A feature similarity
index for image quality assessment. IEEE Transactions on Image Processing, 20(8).
https://doi.org/10.1109/TIP.2011.2109730
[^5]: Sheikh, H. R., & Bovik, A. C. (2006). Image information and visual quality. IEEE
Transactions on Image Processing, 15(2), 430–444.
https://doi.org/10.1109/TIP.2005.859378
[^6]: Zhang, L., Shen, Y., & Li, H. (2014). VSI: A visual saliency-induced index for
perceptual image quality assessment. IEEE Transactions on Image Processing, 23(10),
4270–4281. https://doi.org/10.1109/TIP.2014.2346028
[^7]: Larson, E. C., & Chandler, D. M. (2010). Most apparent distortion: full-reference
image quality assessment and the role of strategy. Journal of Electronic Imaging, 19
(1), 011006. https://doi.org/10.1117/1.3267105
[^8]: Liu, A., Lin, W., & Narwaria, M. (2012). Image quality assessment based on
gradient similarity. IEEE Transactions on Image Processing, 21(4), 1500–1512.
https://doi.org/10.1109/TIP.2011.2175935
[^9]: Desai, N., Singh, A., & Valentino, D. J. (2010). Practical evaluation of image
quality in computed radiographic (CR) imaging systems. Medical Imaging 2010: Physics
of Medical Imaging, 7622, 76224Q. https://doi.org/10.1117/12.844640
[^10]: Reiter, M., Weiß, D., Gusenbauer, C., Erler, M., Kuhn, C., Kasperl, S., &
Kastner, J. (2014). Evaluation of a Histogram-based Image Quality Measure for X-ray
computed Tomography. 5th Conference on Industrial Computed Tomography (iCT) 2014, 25-28
February 2014, Wels, Austria. e-Journal of Nondestructive Testing Vol. 19(6).
https://www.ndt.net/?id=15715

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vIQA",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "IQA, image quality assessment, volumetric data, image comparison, CT, computed tomography",
    "author": null,
    "author_email": "Lukas Behammer <lukas.behammer@fh-wels.at>",
    "download_url": "https://files.pythonhosted.org/packages/09/1f/7e6a513e3a5dac6da624b23ed55f67f01a030d0dc41f59aae894fb195cbd/viqa-1.12.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">\n<img src=\"https://raw.githubusercontent.com/3dct/vIQA/main/branding/logo/Logo_vIQA_wo-text.svg\" width=\"300\">\n\nvIQA &mdash; volumetric Image Quality Assessment\n</h1><br>\n\n[![Project Status: Active \u2013 The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)\n[![PyPI - Version](https://img.shields.io/pypi/v/vIQA)](https://pypi.org/project/vIQA/latest)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/vIQA)](https://pypi.org/project/vIQA/)\n[![PyPI - License](https://img.shields.io/pypi/l/vIQA)](https://pypi.org/project/vIQA/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/vIQA)](https://pypi.org/project/vIQA/)\n[![Documentation GH Action](https://github.com/3dct/vIQA/actions/workflows/documentation.yaml/badge.svg)](https://3dct.github.io/vIQA/)\n[![Build GH Action](https://github.com/3dct/vIQA/actions/workflows/build_wheels_and_publish.yaml/badge.svg)](https://github.com/3dct/vIQA/actions/workflows/build_wheels_and_publish.yaml)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/3dct/vIQA/main.svg)](https://results.pre-commit.ci/latest/github/3dct/vIQA/main)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/3dct/vIQA/main)\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](code_of_conduct.md)\n\n## Table of Contents\n\n* [Overview](#overview)\n* [Documentation](#documentation)\n* [Requirements](#requirements)\n* [Installation](#installation)\n* [Usage](#usage)\n  * [Workflow](#workflow)\n  * [Examples](#examples)\n* [TODO](#todo)\n* [License](#license)\n* [Contacts](#contacts)\n* [References](#references)\n\nvIQA provides an extensive assessment suite for image quality of 2D-images or 3D-volumes as a python package.\nImage Quality Assessment (IQA) is a field of research that aims to quantify the quality of an image. This is usually\ndone by comparing the image to a reference image (full-reference metrics), but can also be done by evaluating the image\nwithout a reference (no-reference metrics). The reference image is usually the original image, but can also be\nanother image that is considered to be of high quality. The comparison is done by calculating a metric that quantifies\nthe difference between the two images or for the image itself. These quality metrics are used in various fields, such as\nmedical imaging, computer vision, and image processing. For example the efficiency of image compression algorithms can be\nevaluated by comparing the compressed image to the original image.\nThis package implements several metrics to compare two images or volumes using different IQA metrics. In addition, some\nmetrics are implemented that can be used to evaluate a single image or volume.\n\nThe metrics used are:\n- Peak Signal to Noise Ratio (PSNR)\n- Root Mean Square Error (RMSE)\n- Universal Quality Index (UQI) [^1]\n- Structured Similarity (SSIM) [^2]\n- Multi-Scale Structural Similarity (MS-SSIM) [^3]\n- Feature Similarity Index (FSIM) [^4]\n- Visual Information Fidelity in *pixel* domain (VIFp) [^5]\n\n> [!CAUTION]\n> The calculated values for VIFp are probably not correct in this implementation. Those values should be treated with\n> caution as further testing is required.\n\n- Visual Saliency Index (VSI) [^6]\n\n> [!WARNING]\n> The original metric supports RGB images only. This implementation can work with\n> grayscale images by copying the luminance channel 3 times.\n\n- Most Apparent Distortion (MAD) [^7]\n- Gradient Similarity Measure (GSM) [^8]\n\n> [!CAUTION]\n> This metric is not yet tested. The metric should be only used for experimental purposes.\n\n- Contrast to Noise Ratio (CNR) [^9]\n- Signal to Noise Ratio (SNR)\n- Q-Measure [^10]\n\n## Overview\n\n| Metric    | Name                                          | Type | Dimensional behaviour | Colour Behaviour | Range (different/worst - identical/best) | Tested | Validated | Reference |\n|-----------|-----------------------------------------------|------|-----------------------|------------------|------------------------------------------|--------|-----------|-----------|\n| PSNR      | Peak Signal to Noise Ratio                    | FR   | 3D native             | \u2714\ufe0f               | $[0, \\infty)$                            | \u2714\ufe0f     | \u2714\ufe0f        | &mdash;   |\n| RMSE      | Root Mean Square Error                        | FR   | 3D native             | \u2714\ufe0f               | $(\\infty, 0]$                            | \u2714\ufe0f     | \u2714\ufe0f        | &mdash;   |\n| UQI [^a]  | Universal Quality Index                       | FR   | 3D native             | (\u2714\ufe0f) [^b]        | $[-1, 1]$                                | \u274c      | (\u2714\ufe0f) [^c] | [^1]      |\n| SSIM      | Structured Similarity                         | FR   | 3D native             | (\u2714\ufe0f) [^b]        | $[-1, 1]$ [^d]                           | \u2714\ufe0f     | \u2714\ufe0f        | [^2]      |\n| MS-SSIM   | Multi-Scale Structural Similarity             | FR   | 3D slicing            | \u2753                | $[0, 1]$                                 | \u274c      | \u2714\ufe0f        | [^3]      |\n| FSIM      | Feature Similarity Index                      | FR   | 3D slicing            | \u2714\ufe0f               | $[0, 1]$                                 | \u2714\ufe0f     | \u2714\ufe0f        | [^4]      |\n| VIFp      | Visual Information Fidelity in *pixel* domain | FR   | 3D slicing            | \u2753                | $[0, \\infty)$ [^e]                       | \u274c      | \u274c         | [^5]      |\n| VSI       | Visual Saliency Index                         | FR   | 3D slicing            | \u2714\ufe0f [^f]          | $[0, 1]$                                 | \u274c      | \u274c         | [^6]      |\n| MAD       | Most Apparent Distortion                      | FR   | 3D slicing            |                  | $[0, \\infty)$                            | \u2714\ufe0f     | \u274c         | [^7]      |\n| GSM       | Gradient Similarity                           | FR   | 3D native or slicing  |                  | $[0, 1]$                                 | \u274c      | \u274c         | [^8]      |\n| CNR       | Contrast to Noise Ratio                       | NR   | 3D native             |                  | $[0, \\infty)$                            | \u2714\ufe0f     | \u274c         | [^9]      |\n| SNR       | Signal to Noise Ratio                         | NR   | 3D native             | \u2714\ufe0f               | $[0, \\infty)$                            | \u2714\ufe0f     | \u274c         | &mdash;   |\n| Q-Measure | Q-Measure                                     | NR   | 3D only [^g]          | \u274c                | $[0, \\infty)$                            | \u274c      | \u274c         | [^10]     |\n\n[^a]: UQI is a special case of SSIM. Also see [^2].\n[^b]: The metric is calculated channel-wise for color images. The values are then averaged after weighting.\n[^c]: As UQI is a special case of SSIM, the validation of SSIM is also valid for UQI.\n[^d]: The range for SSIM is given as $[-1, 1]$, but is usually $[0, 1]$ in practice.\n[^e]: Normally $[0, 1]$, but can be higher than 1 for modified images with higher\ncontrast than reference images.\n[^f]: The original metric supports RGB images only. This implementation can work\nwith grayscale images by copying the luminance channel 3 times.\n[^g]: The Q-Measure is a special metric designed for CT images. Therefore it only works\nwith 3D volumes.\n\n## Documentation\nThe API documentation can be found [here](https://3dct.github.io/vIQA/).\n\n## Requirements\nThe following packages have to be installed:\n- matplotlib\n- nibabel\n- numpy\n- piq\n- pytorch\n- scikit-image\n- scipy\n- tqdm\n- (jupyter) if you want to use the provided notebook\n\n## Installation\nUse either `pip`\n```\npip install viqa\n```\n\nor `conda`\n```\nconda install -c conda-forge viqa\n```\n\n> [!IMPORTANT]\n> The package is currently in development and not yet available on conda-forge.\n\n\n## Usage\n\n### Workflow\nImages are first loaded from .raw files or .mhd files and their corresponding .raw file, normalized to the chosen data\nrange (if the parameter `normalize=True` is set) and then compared. The scores are then calculated and can be printed.\nIf using paths file names need to be given with the bit depth denoted as a suffix (e.g. `_8bit.raw`, `_16bit.mhd`) and\nthe dimensions of the images need to be given in the file name (e.g. `512x512x512`). The images are assumed to be\ngrayscale. Treatment of color images is planned for later versions.\nThe metrics are implemented to calculate the scores for an 8-bit data range (0-255) per default. For some metrics the\nresulting score is different for different data ranges. When calculating several metrics for the same image, the same\ndata range should be used for all metrics. The data range can be changed by setting the parameter `data_range` for each\nmetric. This parameter primarily affects the loading behaviour of the class instances when not using the\n`vIQA.utils.load_data` function directly as described further below, but for some metrics setting the data range is\nnecessary to calculate the score (e.g. PSNR).\n\n### Examples\nBetter:\n\n```python\nimport viqa\nfrom viqa import load_data, normalize_data\n\n## load images\nfile_path_img_r = 'path/to/reference_image_8bit_512x512x512.raw'\nfile_path_img_m = 'path/to/modified_image_8bit_512x512x512.raw'\nimg_r = load_data(\n  file_path_img_r,\n  data_range=1,\n  normalize=False,\n)  # data_range ignored due to normalize=False\nimg_m = load_data(file_path_img_m)  # per default: normalize=False\n# --> both images are loaded as 8-bit images\n\n# calculate and print RMSE score\nrmse = viqa.RMSE()\nscore_rmse = rmse.score(img_r, img_m)  # RMSE does not need any parameters\nrmse.print_score(decimals=2)\n\n# normalize to 16-bit\nimg_r = normalize_data(img_r, data_range_output=(0, 65535))\nimg_m = load_data(img_m, data_range=65535, normalize=True)\n# --> both functions have the same effect\n\n# calculate and print PSNR score\npsnr = viqa.PSNR(data_range=65535)  # PSNR needs data_range to calculate the score\nscore_psnr = psnr.score(img_r, img_m)\npsnr.print_score(decimals=2)\n\n# set optional parameters for MAD as dict\ncalc_parameters = {\n    'block_size': 16,\n    'block_overlap': 0.75,\n    'beta_1': 0.467,\n    'beta_2': 0.130,\n    'luminance_function': {'b': 0, 'k': 0.02874, 'gamma': 2.2},\n    'orientations_num': 4,\n    'scales_num': 5,\n    'weights': [0.5, 0.75, 1, 5, 6]\n}\n\n# calculate and print MAD score\nmad = viqa.MAD(data_range=65535)  # MAD needs data_range to calculate the score\nscore_mad = mad.score(img_r, img_m, dim=2, **calc_parameters)\nmad.print_score(decimals=2)\n```\nPossible, but worse (recommended only if you want to calculate a single metric):\n\n```python\nimport viqa\n\nfile_path_img_r = 'path/to/reference_image_512x512x512_16bit.raw'\nfile_path_img_m = 'path/to/modified_image_512x512x512_16bit.raw'\n\nload_parameters = {'data_range': 1, 'normalize': True}\n# data_range is set to 1 to normalize the images\n# to 0-1 and for calculation, if not set 255 would\n# be used as default for loading and calculating\n# the score\n\npsnr = viqa.PSNR(**load_parameters)  # load_parameters necessary due to direct loading by class\n# also PSNR needs data_range to calculate the score\n# if images would not be normalized, data_range should be\n# 65535 for 16-bit images for correct calculation\nscore = psnr.score(file_path_img_r, file_path_img_m)\n# --> images are loaded as 16-bit images and normalized to 0-1 via the `load_data` function\n#     called by the score method\npsnr.print_score(decimals=2)\n```\n\n> [!TIP]\n> It is recommended to load the images directly with the `vIQA.utils.load_data` function first and then pass the image\n> arrays to the metrics functions. You can also pass the image paths directly to the metrics functions. In this case,\n> the images will be loaded with the given parameters. This workflow is only recommended if you want to calculate a\n> single metric.\n\n> [!IMPORTANT]\n> The current recommended usage files are: [`Image_Comparison.ipynb`](Image_Comparison.ipynb) and [`Image_comparison_batch.ipynb`](Image_comparison_batch.ipynb).\n\nFor more examples, see the provided Jupyter notebooks and the documentation under [API Reference](https://3dct.github.io/vIQA/api_reference.html).\n\n<!-- ## Benchmark TODO: add benchmark results and instructions -->\n\n## TODO\n- [ ] Add metrics\n    - [ ] Add SFF/IFS\n    - [ ] Add Ma\n    - [ ] Add PI\n    - [ ] Add NIQE\n- [ ] Add tests\n    - [x] Add tests for RMSE\n    - [x] Add tests for PSNR\n    - [x] Add tests for SSIM\n    - [ ] Add tests for MSSSIM\n    - [x] Add tests for FSIM\n    - [ ] Add tests for VSI\n    - [ ] Add tests for VIF\n    - [x] Add tests for MAD\n    - [ ] Add tests for GSM\n    - [x] Add tests for CNR\n    - [x] Add tests for SNR\n    - [ ] Add tests for Q-Measure\n- [ ] Add support for different data ranges\n- [ ] Validate metrics\n- [ ] Add color image support\n- [x] Add support for printing values\n  - [ ] Add support for .txt files\n  - [x] Add support for .csv files\n- [x] Add support for fusions\n  - [x] Add support for linear combination\n  - [ ] Add support for decision fusion\n\n<!-- ## Citation TODO: add citation instructions -->\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for information on how to contribute to the\nproject and [development guide](https://3dct.github.io/vIQA/developer_guide.html) for\nfurther information.\n\n## License\n**BSD 3-Clause**\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n   list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n   this list of conditions and the following disclaimer in the documentation\n   and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n   contributors may be used to endorse or promote products derived from\n   this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n## Contacts\nLukas Behammer, [lukas.behammer@fh-wels.at](mailto:lukas.behammer@fh-wels.at)\n\n## References\n[^1]: Wang, Z., & Bovik, A. C. (2002). A Universal Image Quality Index. IEEE SIGNAL\n        PROCESSING LETTERS, 9(3). https://doi.org/10.1109/97.995823\n[^2]: Wang, Z., Bovik, A. C., Sheikh, H. R., & Simoncelli, E. P. (2004). Image quality\nassessment: From error visibility to structural similarity. IEEE Transactions on\nImage Processing, 13(4), 600\u2013612. https://doi.org/10.1109/TIP.2003.819861\n[^3]: Wang, Z., Simoncelli, E. P., & Bovik, A. C. (2003). Multi-scale structural\nsimilarity for image quality assessment. The Thirty-Seventh Asilomar Conference on\nSignals, Systems & Computers, 1298\u20131402. https://doi.org/10.1109/ACSSC.2003.1292216\n[^4]: Zhang, L., Zhang, L., Mou, X., & Zhang, D. (2011). FSIM: A feature similarity\nindex for image quality assessment. IEEE Transactions on Image Processing, 20(8).\nhttps://doi.org/10.1109/TIP.2011.2109730\n[^5]: Sheikh, H. R., & Bovik, A. C. (2006). Image information and visual quality. IEEE\nTransactions on Image Processing, 15(2), 430\u2013444.\nhttps://doi.org/10.1109/TIP.2005.859378\n[^6]: Zhang, L., Shen, Y., & Li, H. (2014). VSI: A visual saliency-induced index for\nperceptual image quality assessment. IEEE Transactions on Image Processing, 23(10),\n4270\u20134281. https://doi.org/10.1109/TIP.2014.2346028\n[^7]: Larson, E. C., & Chandler, D. M. (2010). Most apparent distortion: full-reference\nimage quality assessment and the role of strategy. Journal of Electronic Imaging, 19\n(1), 011006. https://doi.org/10.1117/1.3267105\n[^8]: Liu, A., Lin, W., & Narwaria, M. (2012). Image quality assessment based on\ngradient similarity. IEEE Transactions on Image Processing, 21(4), 1500\u20131512.\nhttps://doi.org/10.1109/TIP.2011.2175935\n[^9]: Desai, N., Singh, A., & Valentino, D. J. (2010). Practical evaluation of image\nquality in computed radiographic (CR) imaging systems. Medical Imaging 2010: Physics\nof Medical Imaging, 7622, 76224Q. https://doi.org/10.1117/12.844640\n[^10]: Reiter, M., Wei\u00df, D., Gusenbauer, C., Erler, M., Kuhn, C., Kasperl, S., &\nKastner, J. (2014). Evaluation of a Histogram-based Image Quality Measure for X-ray\ncomputed Tomography. 5th Conference on Industrial Computed Tomography (iCT) 2014, 25-28\nFebruary 2014, Wels, Austria. e-Journal of Nondestructive Testing Vol. 19(6).\nhttps://www.ndt.net/?id=15715\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A Python package for volumetric image quality assessment.",
    "version": "1.12.0",
    "project_urls": {
        "Documentation": "https://3dct.github.io/vIQA/",
        "Repository": "https://github.com/3dct/vIQA"
    },
    "split_keywords": [
        "iqa",
        " image quality assessment",
        " volumetric data",
        " image comparison",
        " ct",
        " computed tomography"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d8976d63afa65b7bba4420c5191ddcfc56e65cfc590963c1ffaa0b4ade9e38e",
                "md5": "dee53dee9ad2f6fa9d9237ca1ede0ed7",
                "sha256": "f6ad9d697dcd03079e46c1b225700d6783a1762ba4141f382ea247b883fa252a"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp311-cp311-macosx_13_3_arm64.whl",
            "has_sig": false,
            "md5_digest": "dee53dee9ad2f6fa9d9237ca1ede0ed7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 128612,
            "upload_time": "2024-09-04T17:02:28",
            "upload_time_iso_8601": "2024-09-04T17:02:28.780485Z",
            "url": "https://files.pythonhosted.org/packages/0d/89/76d63afa65b7bba4420c5191ddcfc56e65cfc590963c1ffaa0b4ade9e38e/viqa-1.12.0-cp311-cp311-macosx_13_3_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ef71aa1ac59bed3ee8a17e2f606c1afe1d084c2004c6a895406ddd99867b7b4",
                "md5": "5a68f805fcefa2edbfbce82898f95a89",
                "sha256": "1eb9756abd2b9495bdb3a78db1dc5a55ac4696b5a06fa31981078d4a3d7d31cc"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp311-cp311-macosx_13_3_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a68f805fcefa2edbfbce82898f95a89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 134862,
            "upload_time": "2024-09-04T17:02:30",
            "upload_time_iso_8601": "2024-09-04T17:02:30.203580Z",
            "url": "https://files.pythonhosted.org/packages/0e/f7/1aa1ac59bed3ee8a17e2f606c1afe1d084c2004c6a895406ddd99867b7b4/viqa-1.12.0-cp311-cp311-macosx_13_3_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6e85e9ed6a658aac226fdbdfbf27538e52e6c3442859fe0417d66452a2af23d",
                "md5": "c307102a4e9f4e8f2280e2ef53282b2e",
                "sha256": "76208dec3e2aa4d9904b158ae03553bd3389cb606c81ba6c206329adfede78dd"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c307102a4e9f4e8f2280e2ef53282b2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 250632,
            "upload_time": "2024-09-04T17:02:32",
            "upload_time_iso_8601": "2024-09-04T17:02:32.405335Z",
            "url": "https://files.pythonhosted.org/packages/e6/e8/5e9ed6a658aac226fdbdfbf27538e52e6c3442859fe0417d66452a2af23d/viqa-1.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ca40a602691dbaadb887f13b62efcf8347b84f3a4f1b32212f3f38985b0db8b",
                "md5": "a6059388ebeff52f152533abd522ddc5",
                "sha256": "4778889bb6259362e6da2372000e0f0e8341e82a90e6a2d3655dfe0439909688"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6059388ebeff52f152533abd522ddc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 1138892,
            "upload_time": "2024-09-04T17:02:33",
            "upload_time_iso_8601": "2024-09-04T17:02:33.736935Z",
            "url": "https://files.pythonhosted.org/packages/5c/a4/0a602691dbaadb887f13b62efcf8347b84f3a4f1b32212f3f38985b0db8b/viqa-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f9cea3512923632b0650c6a0f887b62cc359cc46303082dbe430c2dc8554732",
                "md5": "cfb70d1cd7ebf64c43e21eb4a3a5aeef",
                "sha256": "1aa7b332f0a99f2bad514783b25b0931461ff92e4706fe0104e6e71f52822e5b"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cfb70d1cd7ebf64c43e21eb4a3a5aeef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 190722,
            "upload_time": "2024-09-04T17:02:35",
            "upload_time_iso_8601": "2024-09-04T17:02:35.386053Z",
            "url": "https://files.pythonhosted.org/packages/6f/9c/ea3512923632b0650c6a0f887b62cc359cc46303082dbe430c2dc8554732/viqa-1.12.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3256f9ff58aa703d45dd227c4a9b8ca3be57acbd6a20bbc0a22eeec4784a007d",
                "md5": "74e510afd9e03afd03144e9bf3f17ff5",
                "sha256": "3f9b7e428b9610f2629489814a27d5aa5c86630fd2eeccd14a263f8722289bf2"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp312-cp312-macosx_13_3_arm64.whl",
            "has_sig": false,
            "md5_digest": "74e510afd9e03afd03144e9bf3f17ff5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 128627,
            "upload_time": "2024-09-04T17:02:36",
            "upload_time_iso_8601": "2024-09-04T17:02:36.494823Z",
            "url": "https://files.pythonhosted.org/packages/32/56/f9ff58aa703d45dd227c4a9b8ca3be57acbd6a20bbc0a22eeec4784a007d/viqa-1.12.0-cp312-cp312-macosx_13_3_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66f75bf60ebda9f41680a8e760d3fb5d3a2bd4e6efece1be03d4eef6740968ef",
                "md5": "e2a2c6beb0aed78febd99db60f8f14b5",
                "sha256": "c18c85c2ce99cae375bd29f3a6ac534451fa778987963938665f43480a70d8c9"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp312-cp312-macosx_13_3_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2a2c6beb0aed78febd99db60f8f14b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 134890,
            "upload_time": "2024-09-04T17:02:37",
            "upload_time_iso_8601": "2024-09-04T17:02:37.948343Z",
            "url": "https://files.pythonhosted.org/packages/66/f7/5bf60ebda9f41680a8e760d3fb5d3a2bd4e6efece1be03d4eef6740968ef/viqa-1.12.0-cp312-cp312-macosx_13_3_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bdaa83e1bf1e49af27334e2394408c01ec855cbbfe2fa8da39d3ef6e3465b6b",
                "md5": "9cd4d6dd555c3d00226d191892e9ef1a",
                "sha256": "917dc3e69c6d763756aecdefba6b17d94fb50eef4a46c15350f680dedc95dd72"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cd4d6dd555c3d00226d191892e9ef1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 250691,
            "upload_time": "2024-09-04T17:02:39",
            "upload_time_iso_8601": "2024-09-04T17:02:39.448847Z",
            "url": "https://files.pythonhosted.org/packages/7b/da/a83e1bf1e49af27334e2394408c01ec855cbbfe2fa8da39d3ef6e3465b6b/viqa-1.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6570101b566b34914e6eb68bc548581a523150b4407278ec841f7c6d0298cfe8",
                "md5": "16dedcb00c5192f4b74721dafe88baab",
                "sha256": "b04f7670603f514d52aef09d03f29a26ccf2c51f9151f03d943d3268a336b9d7"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16dedcb00c5192f4b74721dafe88baab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 1138943,
            "upload_time": "2024-09-04T17:02:40",
            "upload_time_iso_8601": "2024-09-04T17:02:40.736528Z",
            "url": "https://files.pythonhosted.org/packages/65/70/101b566b34914e6eb68bc548581a523150b4407278ec841f7c6d0298cfe8/viqa-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "779ce99046fad0ecc39343c93a2420688f066fd98455482fcecab84c154304f0",
                "md5": "ff5f9b03065ae2f7cfe58ea3415ef2be",
                "sha256": "3358a71cce27f54b51fb468e0925a7e12aa10e55b9be46377a1e2e04b6a36e85"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff5f9b03065ae2f7cfe58ea3415ef2be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 190734,
            "upload_time": "2024-09-04T17:02:42",
            "upload_time_iso_8601": "2024-09-04T17:02:42.370128Z",
            "url": "https://files.pythonhosted.org/packages/77/9c/e99046fad0ecc39343c93a2420688f066fd98455482fcecab84c154304f0/viqa-1.12.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "091f7e6a513e3a5dac6da624b23ed55f67f01a030d0dc41f59aae894fb195cbd",
                "md5": "044d80662d4bda870e28c0ee4cb2708c",
                "sha256": "10ca2b05518f10db20326c69870b04b2a1d7550a4aedff94d21b371b94ec8e6f"
            },
            "downloads": -1,
            "filename": "viqa-1.12.0.tar.gz",
            "has_sig": false,
            "md5_digest": "044d80662d4bda870e28c0ee4cb2708c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 139195,
            "upload_time": "2024-09-04T17:02:43",
            "upload_time_iso_8601": "2024-09-04T17:02:43.953313Z",
            "url": "https://files.pythonhosted.org/packages/09/1f/7e6a513e3a5dac6da624b23ed55f67f01a030d0dc41f59aae894fb195cbd/viqa-1.12.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-04 17:02:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "3dct",
    "github_project": "vIQA",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "viqa"
}
        
Elapsed time: 0.50145s