doubt in the specific lines
Ältere Kommentare anzeigen
could you explain this line
mask_h=4;
mask_w=20
mask = zeros(mask_h,mask_w);
mask(1:mask_h/2,:) = -1;
mask(mask_h/2 + 1:end,:) = 1;
img_filt = imfilter(img, mask,'replicate');
img_filt_up = img_filt(1:floor(img_h/2),:);
i cant understand what it means in general (,:,:,).
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Author Block Masks finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!