Blurring 8 bit color versus monochrome using Matlab
Blurring 8 bit color versus monochrome using Matlab % smoothing in eight bit color and monochrome % parameter definition % get image from MATLAB library load(’clown’); % construct convolution functions [m,n] = size(X); gs = [0.5 0.5]; ge = []; hs = [0.5 0.5]; he = []; g = [gs,zeros(1,m-length(gs)-length(ge)),ge]; h = [hs,zeros(1,n-length(hs)-length(he)),he]; [...]

