blob: cf6872e5d0769ebf85d651be64f2a38848b2e0d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef LIB_JXL_ENC_BUTTERAUGLI_PNORM_H_
#define LIB_JXL_ENC_BUTTERAUGLI_PNORM_H_
#include <stdint.h>
#include "lib/jxl/butteraugli/butteraugli.h"
#include "lib/jxl/image_bundle.h"
namespace jxl {
// Computes p-norm given the butteraugli distmap.
double ComputeDistanceP(const ImageF& distmap, const ButteraugliParams& params,
double p);
double ComputeDistance2(const ImageBundle& ib1, const ImageBundle& ib2,
const JxlCmsInterface& cms);
} // namespace jxl
#endif // LIB_JXL_ENC_BUTTERAUGLI_PNORM_H_
|