Removed StopWatches and corrected some bugs from latest commit

This commit is contained in:
heckflosse
2016-09-07 23:34:06 +02:00
parent 0f21a0de6c
commit ef83e6b591
3 changed files with 16 additions and 39 deletions

View File

@@ -326,11 +326,13 @@ public:
return imgsrc;
}
class denoiseinfostore {
public:
bool valid;
struct {
float chM;
float max_r[9];
float max_b[9];
float ch_M[9];
bool valid = false;
denoiseinfostore() : valid(false) {};
} denoiseInfoStore;
};