blob: 8439a40213aa40cf35f104375f3898350280304f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
*
* noise_status.h - Noise control algorithm status
*/
#pragma once
// The "noise" algorithm stores an estimate of the noise profile for this image.
#ifdef __cplusplus
extern "C" {
#endif
struct NoiseStatus {
double noise_constant;
double noise_slope;
};
#ifdef __cplusplus
}
#endif
|