Robust_image_source_identif.../datasets/raise
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
..
website Move webpage articles to datasets/raise/website/ 2024-04-02 18:31:27 +02:00
extract_noise.py Correctly implement mean denoiser 2024-04-25 15:58:24 +02:00
generate_histogram.py Add commented code to crop image 2024-04-25 14:37:08 +02:00
merge_single_color_channel_images_according_to_bayer_filter.py Precise multiple_colors.png file name 2024-04-23 05:01:22 +02:00
show_mean_noise.py Remove no more relevant print in show_mean_noise.py 2024-04-25 14:28:36 +02:00
split_and_compare_prnus_of_subgroups.py Add show_mean_noise.py 2024-04-03 22:18:18 +02:00
utils.py Move Color Enum to utils.py 2024-04-18 00:19:01 +02:00