how to filter noise/distortion from 3D image?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zaitul
el 22 de Sept. de 2016
Comentada: Zaitul
el 29 de Sept. de 2016
hi. i would like to make 3D kidney in Matlab. .anyone knows how to filter the distortion of this 3D image? So that i am able to create a better 3D image. Thank you.
2 comentarios
Respuesta aceptada
Michelle Wu
el 26 de Sept. de 2016
From my understanding, you have a 3D image dataset with a lot of distortions, and you would like to smooth it by using some sort of image filtering.
If you are using R2014b or earlier:
The MATLAB function “fspecial” allows you to create predefined 2D filters (like Gaussian, Averaging, etc.) to 2D images. However, the functionality of using "fspecial" or a similar function to 3D images is not available in these MATLAB releases. As a workaround, you can create your own filter for " imfilter ". Alternatively, you can use the filter provided on this webpage: http://www.biomecardio.com/matlab/fspecial3.html#1. Note that the MathWorks does not give any warranty or support for functions provided by third-parties.
If you are using R2015a or later:
You may choose from multiple 3D filtering options from the Image Processing Toolbox, such as "imgaussfilt3" or “medfilt3”, to filter out the noise and distortion in the 3D image. Refer to the doc page for more information about Image Filtering.
2 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!