summaryrefslogtreecommitdiffstats
path: root/docs/demos/qualitymetrics.py
diff options
context:
space:
mode:
authorTomas Kulhanek <tomas.kulhanek@stfc.ac.uk>2019-02-22 06:44:53 -0500
committerTomas Kulhanek <tomas.kulhanek@stfc.ac.uk>2019-02-22 06:44:53 -0500
commit4505a79103e98adb33bfb4c10391319e56ae7031 (patch)
tree391e8ac544dc152bd9da8295a2446449764db6df /docs/demos/qualitymetrics.py
parentc8a60f57df5a019b2b7295933dc0299d88f1e35c (diff)
downloadregularization-4505a79103e98adb33bfb4c10391319e56ae7031.tar.gz
regularization-4505a79103e98adb33bfb4c10391319e56ae7031.tar.bz2
regularization-4505a79103e98adb33bfb4c10391319e56ae7031.tar.xz
regularization-4505a79103e98adb33bfb4c10391319e56ae7031.zip
UPDATE: docs -> demos and update paths in m and py demos
Diffstat (limited to 'docs/demos/qualitymetrics.py')
-rw-r--r--docs/demos/qualitymetrics.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/demos/qualitymetrics.py b/docs/demos/qualitymetrics.py
deleted file mode 100644
index 850829e..0000000
--- a/docs/demos/qualitymetrics.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-"""
-Created on Wed Feb 21 13:34:32 2018
-# quality metrics
-@authors: Daniil Kazantsev, Edoardo Pasca
-"""
-import numpy as np
-
-def nrmse(im1, im2):
- rmse = np.sqrt(np.sum((im2 - im1) ** 2) / float(im1.size))
- max_val = max(np.max(im1), np.max(im2))
- min_val = min(np.min(im1), np.min(im2))
- return 1 - (rmse / (max_val - min_val))
-
-def rmse(im1, im2):
- rmse = np.sqrt(np.sum((im1 - im2) ** 2) / float(im1.size))
- return rmse