Prev: what does x2 = "1:.1:5;" mean URGENT
Next: Hilbert Transform Question of Instantaneous Frequency with code and figures
From: Sharon cole on 21 Feb 2010 08:11 Hi, I'm new to Matlab and I am wondering if anyone can recommend a basic algorithm or program for removing speckles from an image grabbed from a video? I found enhancement methods in image processing demos, but nothing that will search for and remove small speckles of noise. Many Thanks, Shaz
From: Nicholas Kinar on 21 Feb 2010 09:49 On 21/02/2010 7:11 AM, Sharon cole wrote: > Hi, > > I'm new to Matlab and I am wondering if anyone can recommend a basic > algorithm or program for removing speckles from an image grabbed from a > video? > > I found enhancement methods in image processing demos, but nothing that > will search for and remove small speckles of noise. > > Many Thanks, > Shaz Perhaps the imnoise function and other various techniques are what you are searching for? http://www.mathworks.com/access/helpdesk/help/toolbox/images/f11-12251.html
From: ImageAnalyst on 21 Feb 2010 12:15
Are the speckles either black or white (like salt and pepper noise)? (This would be best and easiest to fix and give the least side effects on other pixels.) Or can they be any intensity value? Maybe you can just do a median filter in either the x-y or time direction. Or you could use an outlier detection algorithm like this one from Brett Shoelson: http://www.mathworks.com/matlabcentral/fileexchange/3961 |