next up previous
Next: hor_remove.m: Generating the horizontal Up: Matlab functions Previous: reduire_colonnes.m: Reduce the image

background_removal.m: Removes the background of the image

function b_rem=background_removal( matrice )
% BACKGROUND_REMOVAL essaie d'enlever le bruit de fond d'une image gpr
% on essaie de reduire le contrast pour mieux visualiser sur l'ecran

[m,n] = size( matrice );

backgr = mean( matrice' )';
b_rem = matrice - backgr * ones( 1, n );;

end



Adrian Perrig
Wed Jun 5 22:28:55 MET DST 1996