Low-pass filter
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Denis Rahim
am 24 Nov. 2019
Beantwortet: KALYAN ACHARJYA
am 24 Nov. 2019
how to add a Low-pass filter the watermarked picture, i.e., replace each pixel by the average of its
NxN pixel neighborhood (for border pixels, you could e.g. extend the picture to the outside
by gray pixels with pixel value 128).
I use my watermarked picture as
wmarked = imread('markedimage.png');
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 24 Nov. 2019
hsize=?? % define
h=fspecial('average',hsize);
filter_wmarked=imfilter(wmarked,h);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!