blob: 0b4d8f452c000eccc19336d768dd3bf33da093a5 [file] [log] [blame]
Dmitry Kovalev129cb232014-04-08 16:08:39 -07001/*
Adrian Grangeee9843d2016-03-24 12:08:51 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Dmitry Kovalev129cb232014-04-08 16:08:39 -07003 *
Adrian Grangeee9843d2016-03-24 12:08:51 -07004 * 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 Kovalev129cb232014-04-08 16:08:39 -070010 */
11
Alex Conversec65e79d2015-08-06 13:46:28 -070012#ifndef VPX_DSP_SSIM_H_
13#define VPX_DSP_SSIM_H_
Dmitry Kovalev129cb232014-04-08 16:08:39 -070014
15#ifdef __cplusplus
16extern "C" {
17#endif
18
Adrian Grangecebe6f02016-03-25 12:11:05 -070019#include "./aom_config.h"
Yaowu Xubf4202e2016-03-21 15:15:19 -070020#include "aom_scale/yv12config.h"
Dmitry Kovalev129cb232014-04-08 16:08:39 -070021
Jim Bankoskiee87e202015-04-21 10:05:37 -070022// metrics used for calculating ssim, ssim2, dssim, and ssimc
23typedef struct {
24 // source sum ( over 8x8 region )
Alex Conversec65e79d2015-08-06 13:46:28 -070025 uint32_t sum_s;
Jim Bankoskiee87e202015-04-21 10:05:37 -070026
27 // reference sum (over 8x8 region )
Alex Conversec65e79d2015-08-06 13:46:28 -070028 uint32_t sum_r;
Jim Bankoskiee87e202015-04-21 10:05:37 -070029
30 // source sum squared ( over 8x8 region )
Alex Conversec65e79d2015-08-06 13:46:28 -070031 uint32_t sum_sq_s;
Jim Bankoskiee87e202015-04-21 10:05:37 -070032
33 // reference sum squared (over 8x8 region )
Alex Conversec65e79d2015-08-06 13:46:28 -070034 uint32_t sum_sq_r;
Jim Bankoskiee87e202015-04-21 10:05:37 -070035
36 // sum of source times reference (over 8x8 region)
Alex Conversec65e79d2015-08-06 13:46:28 -070037 uint32_t sum_sxr;
Jim Bankoskiee87e202015-04-21 10:05:37 -070038
39 // calculated ssim score between source and reference
40 double ssim;
41} Ssimv;
42
43// metrics collected on a frame basis
44typedef 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 Grangecebe6f02016-03-25 12:11:05 -070064double aom_get_ssim_metrics(uint8_t *img1, int img1_pitch, uint8_t *img2,
clang-format99e28b82016-01-27 12:42:45 -080065 int img2_pitch, int width, int height, Ssimv *sv2,
66 Metrics *m, int do_inconsistency);
Jim Bankoskiee87e202015-04-21 10:05:37 -070067
Adrian Grangecebe6f02016-03-25 12:11:05 -070068double aom_calc_ssim(const YV12_BUFFER_CONFIG *source,
clang-format99e28b82016-01-27 12:42:45 -080069 const YV12_BUFFER_CONFIG *dest, double *weight);
Dmitry Kovalev129cb232014-04-08 16:08:39 -070070
Adrian Grangecebe6f02016-03-25 12:11:05 -070071double aom_calc_ssimg(const YV12_BUFFER_CONFIG *source,
clang-format99e28b82016-01-27 12:42:45 -080072 const YV12_BUFFER_CONFIG *dest, double *ssim_y,
73 double *ssim_u, double *ssim_v);
Dmitry Kovalev129cb232014-04-08 16:08:39 -070074
Adrian Grangecebe6f02016-03-25 12:11:05 -070075double aom_calc_fastssim(const YV12_BUFFER_CONFIG *source,
clang-format99e28b82016-01-27 12:42:45 -080076 const YV12_BUFFER_CONFIG *dest, double *ssim_y,
77 double *ssim_u, double *ssim_v);
Jim Bankoski3f7f1942015-04-17 10:23:24 -070078
Adrian Grangecebe6f02016-03-25 12:11:05 -070079double aom_psnrhvs(const YV12_BUFFER_CONFIG *source,
clang-format99e28b82016-01-27 12:42:45 -080080 const YV12_BUFFER_CONFIG *dest, double *ssim_y,
81 double *ssim_u, double *ssim_v);
Jim Bankoski9757c1a2015-04-17 10:27:56 -070082
Yaowu Xu01dee0b2016-03-25 12:43:01 -070083#if CONFIG_AOM_HIGHBITDEPTH
Adrian Grangecebe6f02016-03-25 12:11:05 -070084double aom_highbd_calc_ssim(const YV12_BUFFER_CONFIG *source,
clang-format99e28b82016-01-27 12:42:45 -080085 const YV12_BUFFER_CONFIG *dest, double *weight,
Deb Mukherjeea160d722014-09-30 21:56:33 -070086 unsigned int bd);
Deb Mukherjee41093722014-09-19 16:51:59 -070087
Adrian Grangecebe6f02016-03-25 12:11:05 -070088double aom_highbd_calc_ssimg(const YV12_BUFFER_CONFIG *source,
clang-format99e28b82016-01-27 12:42:45 -080089 const YV12_BUFFER_CONFIG *dest, double *ssim_y,
90 double *ssim_u, double *ssim_v, unsigned int bd);
Yaowu Xu01dee0b2016-03-25 12:43:01 -070091#endif // CONFIG_AOM_HIGHBITDEPTH
Deb Mukherjee41093722014-09-19 16:51:59 -070092
Dmitry Kovalev129cb232014-04-08 16:08:39 -070093#ifdef __cplusplus
94} // extern "C"
95#endif
96
Alex Conversec65e79d2015-08-06 13:46:28 -070097#endif // VPX_DSP_SSIM_H_