how to write a .dat file in matlab?
5 次查看(过去 30 天)
显示 更早的评论
i have the 1000 training images and 100 test images. i need to read all and save in the .dat file and use in the vc++. if there is any alternate technique to read the images . please share your ideas with me.
thanks
0 个评论
采纳的回答
Ahmed A. Selman
2013-4-18
The obvious method is to construct a loop to read filenames, inside it, open and read, then accumulate the data content in some file you select. You need (maybe) to have a certain way to distinguish between images data if they are to be joined in a single data file, and you must think of such file to be relatively large to handle.
If filenames have some sequence then it is possible to automate the reading loop easily, if not, however, you might consider renaming these image files. Other than this I can't understand a method to read many files with vast differences in their names automatically.
Also, as Walter ans Jan said above, if non of these answer give you an idea about the solution you seek then please elaborate your problem with more details, as filenames to be used in reading, data type you need to store, and the format of how you need to write them..etc.
0 个评论
更多回答(2 个)
Walter Roberson
2013-4-17
.dat includes any binary format. You can use fwrite() to store binary data.
You may need to invent a binary protocol to signal image size and number of bits per pixel.
When you store the images in binary, keep in mind that MATLAB's internal order is "down the columns", whereas C++'s internal order is "across the rows".
Jan
2013-4-17
This is a very general question, which cannot be answered precisely. It is a good strategy to use an established format to store pictures in, while inventing a new .dat format willwaste a lot of time. You are asking for an "alternate technique to read images" - alternate to what?
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!