how to remove gaussian noise?

조회 수: 3 (최근 30일)
RAJSHREE SRIVASTAVA
RAJSHREE SRIVASTAVA 2020년 12월 28일
편집: KALYAN ACHARJYA 2020년 12월 28일
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.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 12월 28일
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
:)
  댓글 수: 5
RAJSHREE SRIVASTAVA
RAJSHREE SRIVASTAVA 2020년 12월 28일
sir but my image is gray scale
KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 12월 28일
편집: KALYAN ACHARJYA 2020년 12월 28일
Please share the following (From Command Window)
>>whos noisyImage
Also, medfilt2 apply by default [3,3] window, no need to mention, though this is not the cause of the error

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Digital Filtering에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by