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] ```
Description
Languages
Python
84%
Java
14.9%
Shell
1.1%