how to write a .dat file in matlab?

3 vues (au cours des 30 derniers jours)
preet
preet le 17 Avr 2013
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

Réponse acceptée

Ahmed A. Selman
Ahmed A. Selman le 18 Avr 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.

Plus de réponses (2)

Walter Roberson
Walter Roberson le 17 Avr 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 commentaires
preet
preet le 18 Avr 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 .
Walter Roberson
Walter Roberson le 18 Avr 2013

Connectez-vous pour commenter.


Jan
Jan le 17 Avr 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 commentaire
preet
preet le 18 Avr 2013
to store the images data in single file like .txt format.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by