Deep Image Structure and Texture Similarity (DISTS) Metric
Project description
Deep Image Structure and Texture Similarity (DISTS) Metric
This is the repository of paper Image Quality Assessment: Unifying Structure and Texture Similarity.
Highlights:
- A full-reference IQA model correlated well with human perception of image quality.
- It is robust to texture variance (e.g., evaluating the images generated by GANs) and mild geometric transformations (e.g., evaluating the image pair that are not strictly point-by-point aligned).
- It can be employed as the objective function in various optimization problems.
Three implementation versions:
- Pytorch
DISTS_pt.py
(recommend) - Tensorflow
DISTS_tf.py
- Matlab
DISTS.m
.
====== Pytorch ======
Installation:
pip install dists-pytorch
Requirements:
- Python>=3.6
- Pytorch>=1.0
Usage:
from DISTS_pytorch import DISTS
D = DISTS()
# calculate DISTS between X, Y (a batch of RGB images, data range: 0~1)
# X: (N,3,H,W)
# Y: (N,3,H,W)
dists_value = D(X, Y)
# set 'require_grad=True, batch_average=True' to get a scalar value as loss.
dists_loss = D(X, Y, require_grad=True, batch_average=True)
dists_loss.backward()
or
git clone https://github.com/dingkeyan93/DISTS
cd DISTS_pytorch
python DISTS_pt.py --ref <ref_path> --dist <dist_path>
====== Tensorflow ======
Requirements:
- Python>=3.6
- Tensorflow>=1.15
Usage:
git clone https://github.com/dingkeyan93/DISTS
cd DISTS_tensorflow
python DISTS_tf.py --ref <ref_path> --dist <dist_path>
====== Matlab ======
Requirements:
- Matlab>=2019b
Usage:
git clone https://github.com/dingkeyan93/DISTS
run demo.m
help DISTS
Citation
@article{ding2020iqa,
title={Image Quality Assessment: Unifying Structure and Texture Similarity},
author={Ding, Keyan and Ma, Kede and Wang, Shiqi and Simoncelli, Eero P.},
journal = {CoRR},
volume = {abs/2004.07728},
year={2020},
url = {https://arxiv.org/abs/2004.07728}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file DISTS_pytorch-0.1-py3-none-any.whl
.
File metadata
- Download URL: DISTS_pytorch-0.1-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73e54ce13e7cf3ca962ee8e433d129884ec3dc75e00a27af90525e1da760ac61 |
|
MD5 | 21b2d6790a062dbc445ab419b2b17c49 |
|
BLAKE2b-256 | fa78f76cbe06c88076f6d6d5ef16a7591a7e3b7eb225e39b035e16d95f0fb89c |