blob: 871e0b62af1f6a6ab9ee0eda01665c45300c7ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
*
* sdn_status.h - SDN (spatial denoise) control algorithm status
*/
#pragma once
// This stores the parameters required for Spatial Denoise (SDN).
#ifdef __cplusplus
extern "C" {
#endif
struct SdnStatus {
double noise_constant;
double noise_slope;
double strength;
};
#ifdef __cplusplus
}
#endif
|