- Call the image form an folder (One by One)
- Apply Filter
- Save the filter image in diffeerent folder
how to remove gaussian noise?
4 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
採用された回答
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:
:)
5 件のコメント
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 Center および File Exchange で Digital Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!