Too many arguments error when converting .tiff to .bmp
Afficher commentaires plus anciens
I am trying to convert .tiff image to .bmp using the code as below
A=imread('ref.tif'); B=imwrite(A,'ref.bmp');
However, it failed and show "too many arguments".
Any recommendation on solving this? Thank you.
3 commentaires
Vanessa Phung
le 15 Nov 2017
Vanessa Phung
le 15 Nov 2017
Réponses (2)
M
le 15 Nov 2017
I don't think that imwrite returns an output. It should be used as
imwrite(A,map,filename)
1 commentaire
Vanessa Phung
le 15 Nov 2017
mounika
le 15 Nov 2017
Try this:
t = Tiff('ref.tiff','r');
imageData = read(t);
imwrite(imageData,'ref.bmp');
1 commentaire
Vanessa Phung
le 15 Nov 2017
Catégories
En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!