Conversion of 100 jpg images to PGM
24 次查看(过去 30 天)
显示 更早的评论
Kindly how can we convert 100 images which are jpg to PGM format?
the Matlab code for one image conversion is:
I = imread('myImage.jpg'); imwrite(I,'myImage7.pgm');
then if we have 100 jpg images how we can convert them to pgm format?
0 个评论
采纳的回答
Image Analyst
2018-10-1
Use the second code sample block.
7 个评论
Guillaume
2018-10-3
Seriously, use a better image viewer, one that includes batch format conversion. A few were already suggested. You would have solved your problem in a matter of minutes.
Image Analyst
2018-10-3
I don't know what "opensleeit" is.
When you run the program, imshow() shows/displays each image as it's loaded. Are you saying imshow() does not work for you?
Why do you want PGM format images anyway? Isn't that some obsolete format from the 90's? Why not just leave them as they are, or use PNG format, which has become the defacto standard?
Since the images have already been ruined by saving in JPG format, converting to another format won't gain you anything. Plus nearly every program that "sees" PGM images will also see JPG images.
更多回答(3 个)
John D'Errico
2018-10-1
Use a loop? Surely you can get the directory contents, so the names of all images in a directory, using a tool like dir. Now just loop over the images that dir returns.
Guillaume
2018-10-2
Even simpler, particularly if you don't have the knowledge to write the code is to download any decent image viewer program that will surely include batch image conversion as one of its feature.
My favorite, which is free for personal and academic use is IrfanView. Start the program, press B (for batch conversion), select the images to convert, select PGM in output format, Press Start Batch. Done!
2 个评论
Guillaume
2018-10-2
ACDSee is still around! I remember using that in the 90s. There's also XnView which is also free and probably many more that can do this in a few clicks. And if you prefer command line, there's always ImageMagick, which again, can do the job in just one command.
The point is, you don't always have to use matlab to solve your problems.
另请参阅
类别
在 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!