converting images
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I want to process images which I get with ultrasound in another software. since the ultrasound images have strange extension, I want to convert them to .jpg or .jpeg using MATLAB and I have the .m file. Problem: MATLAB can only convert 150 images at time and I want to convert more images (like 1000). Can you help me find what the problem is?
2 commentaires
Image Analyst
le 30 Oct 2011
Why do you say that? As far as I know there's no limit on the number of images that can be converted. How are you getting the list of filenames, and how are you doing the conversion? With dir() and imread() and imwrite()?
Ashish Uthama
le 3 Nov 2011
Rza, MATLAB does not impose any file number restrictions. I believe this restriction might come from the program/code you use to do the conversion. As IA asked above, tell us how you are doing the conversion and what error/message it gives that leads you to the 150 image restriction.
Réponses (2)
Naz
le 30 Oct 2011
If you dont use Doppler imaging (your images are grayscale), then it's better to have them as one channel, than is not RGB. This way you can have a regular D2 matrix, which is easy and intuitive to manipulate. After you open your image, just normalize it and then save it as .tif file for example. Also, since you claim that MaltLab can only do 150 images at a time, do it in the loop, so the conversion proceeds one at a time. By default it will save it as 8bit image.
0 commentaires
Reza
le 30 Oct 2011
1 commentaire
Image Analyst
le 30 Oct 2011
Again, why do you say that? Are you getting an error message? Exactly what does it say?
Voir également
Catégories
En savoir plus sur Convert Image Type dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!