blob: 689beed394a7c80b0b218eebd266a0fedd5d2cd4 (
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 noiseConstant;
double noiseSlope;
};
#ifdef __cplusplus
}
#endif
|