How to apply Median filter to a image for fixed number of times using for loop
Show older comments
Hello all,
Simply I want to rewrite below code using for loop.
B = medfilt2( A );
C = medfilt2( B );
D = medfilt2( C );
E = medfilt2( D );
F = medfilt2( E );
Can't figure out how to store image in array or something to call inside for loop.
Thanks
Accepted Answer
More Answers (1)
sacprasanna
on 3 Dec 2015
Edited: Walter Roberson
on 3 Dec 2015
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!