How do I smooth 2D vector field data?
Ältere Kommentare anzeigen
I have a vector field in 2D. How can I smooth the data? I found smooth and smooth3 but it seems there is nothing for 2D. Could someone help me?
Antworten (1)
David Young
am 6 Jul. 2011
2 Stimmen
Split your vector field into components (how to do this depends on how it is stored to start with). Smooth each component separately and reassemble them if necessary.
To smooth a 2-D scalar array, you can use conv2 with a suitable kernel. The choice of kernel depends on how much you want to smooth and what your smoothing requirements are. Typically a Gaussian is a good choice - if you have the Image Processing Toolbox you can use fspecial to get one.
Kategorien
Mehr zu Image Filtering finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!