Filter löschen
Filter löschen

How to smooth the given image?

62 Ansichten (letzte 30 Tage)
Jay Vaidya
Jay Vaidya am 1 Feb. 2020
Beantwortet: Sridhar SG am 2 Feb. 2020
I want to make the image 1 as smooth as possible such that it looks like image 2. I was thinking to decrease the grid size but I don't know how to do that. Thanks in advance,
image 11.jpg image 2 2.jpeg

Akzeptierte Antwort

Sridhar SG
Sridhar SG am 2 Feb. 2020
You can use the imgaussfilt() function to smoothen the image
Example code:
I = imread('index.jpeg');
figure();
imshow(I);
I = imgaussfilt(I,2);
figure();
imshow(I);
index.jpeg
Before Blur is smoothening is applied
res3.jpg
After smoothening is applied

Weitere Antworten (1)

Image Analyst
Image Analyst am 1 Feb. 2020
Use imnoise() to add noise to it, then use imfilter() to blur it.

Kategorien

Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by