converting images
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
Image Analyst
2011-10-30
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
2011-11-3
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.
回答(2 个)
Naz
2011-10-30
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 个评论
Reza
2011-10-30
1 个评论
Image Analyst
2011-10-30
Again, why do you say that? Are you getting an error message? Exactly what does it say?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!