-
Notifications
You must be signed in to change notification settings - Fork 1
Dm32raw
Adrian Quintana edited this page Dec 11, 2017
·
1 revision
This program allows you to convert Digital Micrograph 3 images to their raw versions (i.e. without header). The use of selfiles is provided as well as single file conversion.
$ convert_dm32raw ...
Parameters
- `` Name of the input file to be converted (Digital Micrograph 3 format)
- `` Name of the converted output file (Raw format). If no output file is declared, input file name with
.rawextension is used - `` Name of the sel file for the case in which a set of images are going to be converted
- `` Extension for the converted files
- `` The output has the same endianness as the input. Use this option to specifically reverse the endianness of the output
Here you have several examples of commands for file conversion:
- Convert a DM3 image to raw format.
$ convert_dm32raw -i img.dm3 -o img.raw
Two files are written,img.raw and its info fileimg.raw.inf.
- Here it is an example with sel file. Given the sel file
images.selwhose content is the following:
image1.dm3 1
image2.dm3 1
image3.dm3 1
The command to type should be more or less like:
$ convert_dm32raw -sel images.sel -oext raw
Seven files are written,images_raw.sel whose content is:
image1.raw 1
image2.raw 1
image3.raw 1
the filesimage1.raw ,image2.raw,image3.raw, and their info files,image1.raw.inf,image2.raw.inf andimage3.raw.inf.
--Main.JoaquinOton - 04 Dec 2009