ITK/MetaIO

From KitwarePublic
Jump to navigationJump to search

MetaIO Documentation

Highlights

  • Simple text descriptor using tagged field format
  • Descriptor can appear as a text header preceding binary data
  • Descriptor can be in a separate file that describes a binary data file
  • Via separate header and binary data files, multiple binary data formats are supported
    • Bmp, .im, dicom
    • UChar, Char, UShort, Short, UInt, Int, Float, Double voxels
  • Supports storage of parameters necessary for real-world medical image processing
    • Element (e.g., voxel or pixel) size
    • Image position and orientation
    • Patient position and orientation
  • Supports MSB and LSB byte ordering
  • ND Data in a single file
  • ND Data as a sequence of (N-1)D files
  • Easily extended to handle user-defined fields on a per application basis .

Documentation

PDF version of the documentation is available.

Get the software

MetaIO.zip Most recent version available as part of the Insight Toolkit in directory Insight/Utilities/MetaIO

Related Links

  • MRIConvert - excellent tool for DICOM to MetaImage conversion

MetaCommand

Introduction

Thanks to MetaCommand you can easily receive parameters in your software from the command line. The purpose of this class is to provide a unified framework for command line parsing.

For instance, all programs that use MetaCommand are self-described using the command line –vxml:

$ ./AtlasSummation -vxml
<option>
<number>0</number>
<name>Outputcount</name>
<tag>oc</tag>
<description>Image of count values for each voxel</description>
<required>0</required>
<nvalues>1</nvalues>
<field>
<name>filename</name> 
<description></description>
<type>string</type>
<value></value>
<external>0</external>
<required>1</required>
...

Moreover, The description of the parameters can be easily retrieve at runtime via ./your_program –v :

$ ./AtlasSummation -v
Usage : d:\Work\itkUNCApplications-VC++\bin\debug\AtlasSummation.exe
[-oc <filename>  : Image of count values for each voxel]
[-ao  : Adjust the mean origin to the input images]
[-as  : Adjust the mean size to fit the input images]
[-stdev <bool> (true) : Is the sigma image standard deviation?]

All these advantages are provided for you in the MetaCommand class.

MetaCommand in use

Definitions

Metacommand differentiates the term ‘Option’ and ‘Field’. Basically an option can be placed anywhere in the command line as long as it is defined by a tag. On the other hand, the fields are placed in order and do not require any tag.

Programmer’s point of view

To use MetaCommand you have to include the file metaCommand.h in your code.

#include <metaCommand.h>

Then you need to declare a MetaCommand object, for example:

 MetaCommand command;
  1. To add an option (a tag + a field) you have to use 2 methods:
 SetOption(std::string name, std::string tag, bool required, 
           std::string description)

There are two more arguments (the type = flag, and the default value=””) but it is not necessary to put them because they are initialized correctly by default. The first argument is the name of the tag, the second is the string to write in your command line to use this option, the third indicates if the tag is required or not, and the last one is a description of the tag.

AddOptionField(std::string optionName, std::string Name,
               MetaCommand::TypeEnumType Type, bool required, 
               std::string defValue).

The first argument indicates at which tag the field belongs giving the name of the tag (see first argument of SetOption), the second argument is the name of the field, the third one is the type of the field (bool, int, float or string), the fourth argument indicates if the field is required or not, and the last one is the default value (note that you have to put a string even if it is your type is int or float). NOTE: you can use several times the method AddOptionFIeld for a same tag.

  1. To define a field:

You can also just add a field (without the tag) thanks to the following method:

 AddField(std::string Name, std::string Description, 
          MetaCommand::TypeEnumType Type, bool ExternalData).

The first argument is the name of the field, the second his description, the third one his type and the last one indicates if that data is external to your application or not (e.g : a filename is external but the size of the input image is internal).

Example

Let’s define a command line like: ./example input.mha –w 2 output.mha This will be coded as:

MetaCommand command;
command.SetOption("Write","w",false,
                  "writes the current image to the designated file with a type");
command.AddOptionField("Write","filename",MetaCommand::STRING,true);
command.AddOptionField("Write","Type",MetaCommand::INT,false,”1”);
command.AddField("infile","infile filename",MetaCommand::STRING,true);

Then the user can parse the command line thanks to the method:

Parse(int argc, char* argv[])
if( !command.Parse(argc,argv) )
  {
  return 1;
  }

Finally to access the different options, one of these 4 methods can be used:

  • GetValueAsString(Option option, std::string fieldName)
  • GetValueAsFloat(Option option, std::string fieldName)
  • GetValueAsInt(Option option, std::string fieldName)
  • GetValueAsBool(Option option, std::string fieldName)

To recover the parameters of an option (tag + field), in the first argument of these methods the name of the tag has to be specified and in the second argument the name of the field. To recover the parameter of a single field you just need to specify the first argument: the name of the field.

Example: to access the parameters of the previous example :

std::string imageIn = command.GetValueAsString("infile");
std::string imageOut = command.GetValueAsString("Write","filename");
int OutputType = command.GetValueAsInt(“Write","Type");

dicomPhilips2meta - Conversion tool from dicom Philips to metaImage

Usage is:

 dicomPhilips2meta -t <PhilipsDicom> <outputmeta.mha/mhd>