added possibility to apply "RAW line noise filter" only in a specific direction (horizontal or vertical)

This commit is contained in:
Alberto Griggio
2018-02-28 23:37:34 +01:00
parent 34807dc7a9
commit 0bb7375a90
11 changed files with 73 additions and 8 deletions

View File

@@ -1260,6 +1260,12 @@ struct RAWParams {
double black3;
bool twogreen;
int linenoise;
enum class LineNoiseDirection {
HORIZONTAL = 1,
VERTICAL,
BOTH
};
LineNoiseDirection linenoiseDirection;
int greenthresh;
int dcb_iterations;
int lmmse_iterations;