Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
doubt in specific line
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
This is the input
mask_h=2;
mask_w=4;
mask = zeros(mask_h,mask_w);
mask(1:mask_h/2,:) = -1;
mask(mask_h/2 + 1:end,:) = 1;
kindly explain the following line. What replicate means and how it will work?
img_filt = imfilter(img, mask,'replicate');
0 commentaires
Réponses (1)
Walter Roberson
le 23 Juil 2020
'replicate'
Input array values outside the bounds of the array are assumed to equal the nearest array border value.
(from doc imfilter )
1 commentaire
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!