- https://github.com/Benjamin-Loison
- Joined on
2022-10-16
Block a user
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 19:20:39 +02:00
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
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?
datasets/raise/utils.py
Lines 87 to 96 in ec4657eda8
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 |
Benjamin_Loison
closed issue Benjamin_Loison/Robust_image_source_identifica…#56
2024-05-15 19:06:51 +02:00
Track: Real time mean computation tool?
Benjamin_Loison
closed issue Benjamin_Loison/Robust_image_source_identifica…#71
2024-05-15 19:05:01 +02:00
Use non-local means denoiser
Benjamin_Loison
closed issue Benjamin_Loison/Robust_image_source_identifica…#69
2024-05-15 18:33:25 +02:00
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
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 18:21:15 +02:00
Benjamin_Loison
commented on issue Benjamin_Loison/Robust_image_source_identifica…#69
2024-05-15 17:35:57 +02:00
Use a low-pass filter denoiser
Benjamin_Loison
commented on issue Benjamin_Loison/Robust_image_source_identifica…#69
2024-05-15 17:17:07 +02:00
Use a low-pass filter denoiser
The Stack Overflow answer 43346070 seems to be nice for square images.
Benjamin_Loison
commented on issue Benjamin_Loison/Robust_image_source_identifica…#69
2024-05-15 16:27:34 +02:00
Use a low-pass filter denoiser
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 16:23:41 +02:00
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 15:43:20 +02:00
merge_with_same_color_scale_single_color_channel_images_according_to_bayer_filter.py
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 15:42:28 +02:00
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 15:39:15 +02:00
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 15:35:38 +02:00
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 15:29:45 +02:00
Benjamin_Loison
pushed to master at Benjamin_Loison/Robust_image_source_identifica…
2024-05-15 15:19:49 +02:00