haesleinhuepf / BioImageAnalysisNotebooks

Python Jupyter notebooks for BioImageAnalysis, GPU-accelerated image processing, bio-image data science and more
https://haesleinhuepf.github.io/BioImageAnalysisNotebooks
BSD 3-Clause "New" or "Revised" License
123 stars 35 forks source link

added notebook about downsampling in combination with denoising #40

Closed thawn closed 1 year ago

thawn commented 1 year ago

In this notebook, several ways to down-scale image data are compared. Start with relatively simple and fast methods, moving to algorithms that combine down-scaling and denoising. Finally, the algorithms are benchmarked on a M1 Macbook Pro.

Summary of the findings:

Denoising before down-scaling significantly improves signal-to-noise, without loosing more detail than down-scaling alone. The additional computing time required for denoising is therefore well invested - particularly, if efficient algorithms such as skimage.transform.downscale_local_mean() or GPU acceleration are used.

closes #39

haesleinhuepf commented 1 year ago

Hi Till @thawn ,

that's amazing, big thanks for this! It's perfect as it is. Just next time try to write text that's a bit more concise. Maybe, also not all examples are necessary 😉 But leave this as it is, it's great!

Two minor requests:

Thanks!

Best, Robert

thawn commented 1 year ago

Done :-)