MATLAB: How to remove gaussian noise

gray scaleguassian filter

I image dataset having 250 images , image size with 240*240 grayscale image. I want to remove noise using guassian filter all at once and want to store the images in folder. How can I do it.

Best Answer

Please refer the link, how to call sequences of images from an folder?
Once the image call done (One By One)
for
image_data=imread(filename);
%% Applyfilter
filter_image=imfilter(....)
% Set the path to save the filtered image
imwrite(filter_image,path)
end
There are multiple Answers that are available for similar questions in MATLAB Answers
Steps:
  • Call the image form an folder (One by One)
  • Apply Filter
  • Save the filter image in diffeerent folder
:)