what should i do to make both images of same size
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Komal Gaikwad
le 3 Avr 2018
Réponse apportée : Von Duesenberg
le 3 Avr 2018
lena.jpg image is having value 256*256 uint8 while kssk.jpg is having value 225*225*3 uint8. i want image of value 256*256 uint8,how to make it same or anyone is having pls attach sample
0 commentaires
Réponse acceptée
Von Duesenberg
le 3 Avr 2018
im = imread('kssk.jpg');
newIm = rgb2gray(imresize(im, [256, 256]));
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!