Go to file
Benjamin Loison 65708e4977
Correctly implement mean denoiser
Used to have:

```py
imageDenoisedNpArray = imageNpArray - means[color]
imageNoiseNpArray = imageNpArray - imageDenoisedNpArray
```

so:

```py
imageNoiseNpArray = means[color]
```

then we mean the mean...

While should have:

```py
imageDenoisedNpArray = means[color]
```
2024-04-25 15:58:24 +02:00
algorithms Make Gaussian noise in getPrnuShownAsSuch only on text 2024-03-29 13:22:36 +01:00
articles Update annotations 2024-04-11 23:52:38 +02:00
datasets Correctly implement mean denoiser 2024-04-25 15:58:24 +02:00
.gitignore Add __pycache__ to .gitignore 2024-03-26 18:21:01 +01:00