7ed6ff5adb Add RESOLUTION support for Denoiser.MEAN in extract_noise.py
Benjamin_Loison commented on issue Benjamin_Loison/Robust_image_source_identifica…#62 2024-05-15 19:18:23 +02:00
Optimize execution speed

On the crop we seem to particularly see the lines artifacts, see #70.

Benjamin_Loison commented on issue Benjamin_Loison/Robust_image_source_identifica…#62 2024-05-15 19:15:21 +02:00
Optimize execution speed

For Rafael 23/04/24 estimated PRNU with mean denoiser:

image

400x400 (per color channel) centered crop:

![mean_rafael_230424_mean_mult…

Benjamin_Loison commented on issue Benjamin_Loison/Robust_image_source_identifica…#56 2024-05-15 19:06:51 +02:00
Track: Real time mean computation tool?

class iterativeMean:
mean = None
numberOfElementsInMean = 0
def add(self, element):
if self.mean is None:
self.mean = element
else:
self.mean = ((self.mean * self.numberOfElementsInMean) + element) / (self.numberOfElementsInMean + 1)
self.numberOfElementsInMean += 1

Track: Real time mean computation tool?
Use non-local means denoiser
Use a low-pass filter denoiser
Benjamin_Loison commented on issue Benjamin_Loison/Robust_image_source_identifica…#69 2024-05-15 18:30:24 +02:00
Use a low-pass filter denoiser

New corrected PRNU:

mean_rafael_230424_low_pass_multiple_colors

ec4657eda8 Clean low pass denoiser
95796b53fc #69: Remove artifacts from low pass denoiser
Compare 2 commits »
Benjamin_Loison opened issue Benjamin_Loison/numpy#3 2024-05-15 17:03:54 +02:00
Comma in quotes
462bd92509 Make production ready benchmark_load_part_of_images.py
f7c08849dc Update old merge_with_same_color_scale_single_color_channel_images_according_to_bayer_filter.py
8ec292ba11 Add old Termux try
dac9ce9d50 Update remove_period_patterns.py
d68cd1f8d9 Add articles/Median absolute deviation - Wikipedia/
3de2d90a84 Add articles/Univariate - Wikipedia/
feaca32d6e Add articles/Point spread function - Wikipedia/