how to write a .dat file in matlab?

5 views (last 30 days)
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

Accepted Answer

Ahmed A. Selman
Ahmed A. Selman on 18 Apr 2013
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.

More Answers (2)

Walter Roberson
Walter Roberson on 17 Apr 2013
.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".
  2 Comments
preet
preet on 18 Apr 2013
so what approach should i follow to read image.actually i did not find any code in visual c++ to read all images from a folder or directory so i approached here mean matlab.please help me .

Sign in to comment.


Jan
Jan on 17 Apr 2013
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?
  1 Comment
preet
preet on 18 Apr 2013
to store the images data in single file like .txt format.

Sign in to comment.

Categories

Find more on Convert Image Type in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!