KWPublic/Applications/MetaImageImporter: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Add MetaImageImporter documentation)
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
= MetaImageImporter =
= MetaImageImporter, to convert from RAW to MHD  =


MetaImageImporter is a cross-platform application that generates a .mhd (meta image file format) from a raw file or several raw files.
MetaImageImporter is a cross-platform application that generates a .mhd (meta image file format) from a raw file or several raw files.
The created file is a header that contains information like origin, spacing, data type, number of components and more importantly that points (relative in most cases, absolute if the mhd and raw files are on 2 separate disk ie: respectively "C:/" and "D:/" ) to the raw file.
The created file is a header that contains information like origin, spacing, data type, number of components and more importantly that points (relative in most cases, absolute if the mhd and raw files are on 2 separate disk ie: respectively "C:/" and "D:/" ) to the raw file.
 
MetaImageImporter is a [http://trolltech.com/products QT] frontend of a command line program written by Stephen Aylward that can be found in [http://www.itk.org/cgi-bin/viewcvs.cgi/MetaImageImporter/?root=InsightApplications InsightApplications/MetaImageImporter]. As a matter of fact, the supported platforms are the same than Qt.


MetaImageImporter is a [http://trolltech.com/products QT] frontend of a command line program written by Stephen Aylward that can be found in [http://www.itk.org/cgi-bin/viewcvs.cgi/MetaImageImporter/?root=InsightApplications InsightApplications/MetaImageImporter]. The handled platforms are the same than Qt handle.


== Documentation ==
== Documentation ==
To generate the meta image file header, the user is asked a series of questions about the raw file. There is one question per panel. Default values are inferred, the user must verify them and change them if wrong before clicking the next button. The raw file path (or raw files paths) is the last question asked to the user because the question depends of the image dimension ( 1D, 2D, 3D...) ie: a single or multi files.
To generate the meta image file header, the user is asked a series of questions about the raw file. There is one question per panel. Default values are inferred, the user must verify them and change them if wrong before clicking the next button. The raw file path (or raw files paths) is the last question asked to the user because the question depends of the image dimension ( 1D, 2D, 3D...) ie: a single or multi files.


=== Screen Shots ===
== Screen Shots ==
 
{|
|[[Image:MetaImageImporter-Screenshot-1.png|thumb|400px|2nd step, the user is asked the dimension of the raw data]]
|[[Image:MetaImageImporter-Screenshot-2.png|thumb|400px|4th step, the user is asked the type of the data]]
|}
 
{|
|[[Image:MetaImageImporter-Screenshot-3-import.png|thumb|400px|Final step, if the raw data is stored in multiple files, the user can use a fprintf command to import the file names.]]
|[[Image:MetaImageImporter-Screenshot-4-import2.png|thumb|400px|Final step, if the raw data is stored in multiple files, the user can enter a list of all the files.]]
|}


=== Compilation ===
=== Compilation ===
# Requires Qt only
# Download and build your favorite Qt version
# Build Qt
# Download KWPublic
# Run CMake using KWPublic/Applications/MetaImageImporter as the source directory
svn co https://www.kitware.com:8443/svn/KWPublic/trunk KWPublic
# Build
# Run CMake on KWPublic with BUILD_APPLICATIONS=ON and BUILD_APPLICATIONS_META_IMAGE_IMPORTER=ON
# Build KWPublic
# MetaImageImporter can be found at:
YourKWPublicBuildDirectory/Applications/MetaImageImporter/MetaImageImporter

Latest revision as of 14:42, 27 April 2009

MetaImageImporter, to convert from RAW to MHD

MetaImageImporter is a cross-platform application that generates a .mhd (meta image file format) from a raw file or several raw files. The created file is a header that contains information like origin, spacing, data type, number of components and more importantly that points (relative in most cases, absolute if the mhd and raw files are on 2 separate disk ie: respectively "C:/" and "D:/" ) to the raw file.

MetaImageImporter is a QT frontend of a command line program written by Stephen Aylward that can be found in InsightApplications/MetaImageImporter. As a matter of fact, the supported platforms are the same than Qt.


Documentation

To generate the meta image file header, the user is asked a series of questions about the raw file. There is one question per panel. Default values are inferred, the user must verify them and change them if wrong before clicking the next button. The raw file path (or raw files paths) is the last question asked to the user because the question depends of the image dimension ( 1D, 2D, 3D...) ie: a single or multi files.

Screen Shots

2nd step, the user is asked the dimension of the raw data
4th step, the user is asked the type of the data
Final step, if the raw data is stored in multiple files, the user can use a fprintf command to import the file names.
Final step, if the raw data is stored in multiple files, the user can enter a list of all the files.

Compilation

  1. Download and build your favorite Qt version
  2. Download KWPublic
svn co https://www.kitware.com:8443/svn/KWPublic/trunk KWPublic
  1. Run CMake on KWPublic with BUILD_APPLICATIONS=ON and BUILD_APPLICATIONS_META_IMAGE_IMPORTER=ON
  2. Build KWPublic
  3. MetaImageImporter can be found at:

YourKWPublicBuildDirectory/Applications/MetaImageImporter/MetaImageImporter