Benjamin Loison
65708e4977
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] ``` |
||
---|---|---|
.. | ||
website | ||
extract_noise.py | ||
generate_histogram.py | ||
merge_single_color_channel_images_according_to_bayer_filter.py | ||
show_mean_noise.py | ||
split_and_compare_prnus_of_subgroups.py | ||
utils.py |