salut tout le monde je travaille sur le tatouage d'image numerique
pour le hide image j'utilise un logo de 32x32 et l'image lena de taille 512x512 et mon probleme que :comment j'insert un logo elle n'as pas la meme taille que l'image je veux l tatouéeCode:clear close all x=imread('lena512.bmp'); %greyscale image y=imread('hide.bmp'); %binary image y1=bitget(uint8(y),1); %this is LSB of binary image y (all other bits of image y are equal 0) x1=bitset(x,1,y1); %puting LSB bits of image y into LSB bits of image x subplot(221),imshow(x);title('Original image') subplot(222),imshow(y1,[]);title('Binary image') subplot(223),imshow(x1);title('Greyscale+binary image') subplot(224),imshow(bitget(x1,1),[]);title('LSB of Greyscale+binary image')
merci tous a l'avance
please help me i will be grateful
-----