Change expcomp visibility and fixed bug issue 5752

This commit is contained in:
Desmis
2020-05-14 14:11:47 +02:00
15 changed files with 272 additions and 31 deletions

View File

@@ -2041,6 +2041,22 @@ struct RAWParams {
// exposure before interpolation
double expos;
struct PreprocessWB {
enum class Mode {
CAMERA = 0,
AUTO
};
Mode mode;
PreprocessWB();
bool operator ==(const PreprocessWB& other) const;
bool operator !=(const PreprocessWB& other) const;
};
PreprocessWB preprocessWB;
bool hotPixelFilter;
bool deadPixelFilter;
int hotdeadpix_thresh;