Why the imfilter give different result with textbook?

4 Ansichten (letzte 30 Tage)
Yode
Yode am 23 Jul. 2017
Kommentiert: Walter Roberson am 23 Jul. 2017
As the textbook say,this code ( gd=imfilter(f,w)) will give a result with blurry edge like follow
But actually I will get a result :
w=ones(31);
gd=imfilter(f,w);
imshow(gd)
This is original picture.Maybe I have missed something.

Akzeptierte Antwort

Image Analyst
Image Analyst am 23 Jul. 2017
Because you did not divide by 31^2 the image gets clipped to 256 instead of having much, much greater values. If you want to see it blurred, either convert to double (but the blurred image will be in a much brighter intensity range than the original), or divide your kernel by 31^2:
windowWidth = 31;
w = ones(windowWidth) / windowWidth ^ 2;
gd = imfilter(grayImage, w);
  2 Kommentare
Yode
Yode am 23 Jul. 2017
Oh god,the book fool me.Thank very very very very much...
Walter Roberson
Walter Roberson am 23 Jul. 2017
Also notice that they used imshow(gd, []) but you used imshow(gd) without the []

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Signal Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!