blob: 843260f013ae53a44e15fc2450973353a5b8972e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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. */
struct NoiseStatus {
double noiseConstant;
double noiseSlope;
};
|