Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 1 | /* |
Adrian Grange | ee9843d | 2016-03-24 12:08:51 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 3 | * |
Adrian Grange | ee9843d | 2016-03-24 12:08:51 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 12 | #ifndef VPX_DSP_SSIM_H_ |
| 13 | #define VPX_DSP_SSIM_H_ |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 14 | |
| 15 | #ifdef __cplusplus |
| 16 | extern "C" { |
| 17 | #endif |
| 18 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 19 | #include "./aom_config.h" |
Yaowu Xu | bf4202e | 2016-03-21 15:15:19 -0700 | [diff] [blame] | 20 | #include "aom_scale/yv12config.h" |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 21 | |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 22 | // metrics used for calculating ssim, ssim2, dssim, and ssimc |
| 23 | typedef struct { |
| 24 | // source sum ( over 8x8 region ) |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 25 | uint32_t sum_s; |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 26 | |
| 27 | // reference sum (over 8x8 region ) |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 28 | uint32_t sum_r; |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 29 | |
| 30 | // source sum squared ( over 8x8 region ) |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 31 | uint32_t sum_sq_s; |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 32 | |
| 33 | // reference sum squared (over 8x8 region ) |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 34 | uint32_t sum_sq_r; |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 35 | |
| 36 | // sum of source times reference (over 8x8 region) |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 37 | uint32_t sum_sxr; |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 38 | |
| 39 | // calculated ssim score between source and reference |
| 40 | double ssim; |
| 41 | } Ssimv; |
| 42 | |
| 43 | // metrics collected on a frame basis |
| 44 | typedef struct { |
| 45 | // ssim consistency error metric ( see code for explanation ) |
| 46 | double ssimc; |
| 47 | |
| 48 | // standard ssim |
| 49 | double ssim; |
| 50 | |
| 51 | // revised ssim ( see code for explanation) |
| 52 | double ssim2; |
| 53 | |
| 54 | // ssim restated as an error metric like sse |
| 55 | double dssim; |
| 56 | |
| 57 | // dssim converted to decibels |
| 58 | double dssimd; |
| 59 | |
| 60 | // ssimc converted to decibels |
| 61 | double ssimcd; |
| 62 | } Metrics; |
| 63 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 64 | double aom_get_ssim_metrics(uint8_t *img1, int img1_pitch, uint8_t *img2, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 65 | int img2_pitch, int width, int height, Ssimv *sv2, |
| 66 | Metrics *m, int do_inconsistency); |
Jim Bankoski | ee87e20 | 2015-04-21 10:05:37 -0700 | [diff] [blame] | 67 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 68 | double aom_calc_ssim(const YV12_BUFFER_CONFIG *source, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 69 | const YV12_BUFFER_CONFIG *dest, double *weight); |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 70 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 71 | double aom_calc_ssimg(const YV12_BUFFER_CONFIG *source, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 72 | const YV12_BUFFER_CONFIG *dest, double *ssim_y, |
| 73 | double *ssim_u, double *ssim_v); |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 74 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 75 | double aom_calc_fastssim(const YV12_BUFFER_CONFIG *source, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 76 | const YV12_BUFFER_CONFIG *dest, double *ssim_y, |
| 77 | double *ssim_u, double *ssim_v); |
Jim Bankoski | 3f7f194 | 2015-04-17 10:23:24 -0700 | [diff] [blame] | 78 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 79 | double aom_psnrhvs(const YV12_BUFFER_CONFIG *source, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 80 | const YV12_BUFFER_CONFIG *dest, double *ssim_y, |
| 81 | double *ssim_u, double *ssim_v); |
Jim Bankoski | 9757c1a | 2015-04-17 10:27:56 -0700 | [diff] [blame] | 82 | |
Yaowu Xu | 01dee0b | 2016-03-25 12:43:01 -0700 | [diff] [blame^] | 83 | #if CONFIG_AOM_HIGHBITDEPTH |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 84 | double aom_highbd_calc_ssim(const YV12_BUFFER_CONFIG *source, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 85 | const YV12_BUFFER_CONFIG *dest, double *weight, |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 86 | unsigned int bd); |
Deb Mukherjee | 4109372 | 2014-09-19 16:51:59 -0700 | [diff] [blame] | 87 | |
Adrian Grange | cebe6f0 | 2016-03-25 12:11:05 -0700 | [diff] [blame] | 88 | double aom_highbd_calc_ssimg(const YV12_BUFFER_CONFIG *source, |
clang-format | 99e28b8 | 2016-01-27 12:42:45 -0800 | [diff] [blame] | 89 | const YV12_BUFFER_CONFIG *dest, double *ssim_y, |
| 90 | double *ssim_u, double *ssim_v, unsigned int bd); |
Yaowu Xu | 01dee0b | 2016-03-25 12:43:01 -0700 | [diff] [blame^] | 91 | #endif // CONFIG_AOM_HIGHBITDEPTH |
Deb Mukherjee | 4109372 | 2014-09-19 16:51:59 -0700 | [diff] [blame] | 92 | |
Dmitry Kovalev | 129cb23 | 2014-04-08 16:08:39 -0700 | [diff] [blame] | 93 | #ifdef __cplusplus |
| 94 | } // extern "C" |
| 95 | #endif |
| 96 | |
Alex Converse | c65e79d | 2015-08-06 13:46:28 -0700 | [diff] [blame] | 97 | #endif // VPX_DSP_SSIM_H_ |