A voir également:
- Histogramme d'image normalisé
- Image iso - Guide
- Acronis true image - Télécharger - Sauvegarde
- Image iso windows 10 - Guide
- Faststone image viewer - Télécharger - Visionnage & Diaporama
- Comment agrandir une image - Guide
1 réponse
Zoul67
Messages postés
1959
Date d'inscription
lundi 3 mai 2010
Statut
Membre
Dernière intervention
30 janvier 2023
149
20 janv. 2011 à 20:18
20 janv. 2011 à 20:18
Bonsoir,
N'aurais-tu pas oublié de préciser "avec Matlab" ?
N'aurais-tu pas oublié de préciser "avec Matlab" ?
21 janv. 2011 à 09:45
21 janv. 2011 à 09:49
im=imread('rose1.jpg');
figure;
imshow(im);
im2=double(im)/255;
imR=im2(:,:,1);
imG=im2(:,:,2);
imB=im2(:,:,3);
for i=1:127
for j=1:85
s(i,j)=imR(i,j)+imG(i,j)+imB(i,j);
imNR(i,j)=imR(i,j)/s(i,j);
imNG(i,j)=imG(i,j)/s(i,j);
imNB(i,j)=imB(i,j)/s(i,j);
end
end
for i=1:127
for j=1:85
TN(i,j)=imNR(i,j)+ imNG(i,j)+ imNB(i,j);
end
end
imN(:,:,1)=imNR;
imN(:,:,2)=imNG;
imN(:,:,3)=imNB;
imN;
figure;
imshow(imN);