Difference between revisions of "Modules:CreateaDicomSeries-Documentation-3.4"

From Slicer Wiki
Jump to: navigation, search
(New page: Return to Slicer 3.4 Documentation __NOTOC__ ===Module Name=== MyModule {| |thumb|280px|Caption 1 |[[Image:screenshotBlank.png|thumb|2...)
 
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Documentation-3.4|Return to Slicer 3.4 Documentation]]
+
[[Documentation-3.4|Return to Slicer 3.4 Documentation]]
 +
 
 +
[[Announcements:Slicer3.4#Highlights|Gallery of New Features]]
 
__NOTOC__
 
__NOTOC__
 
===Module Name===
 
===Module Name===
MyModule
+
Create a DICOM Series
  
 
{|
 
{|
|[[Image:screenshotBlank.png|thumb|280px|Caption 1]]
+
|[[Image:CreateaDicomSeries.png|thumb|280px|GUI panel]]
|[[Image:screenshotBlank.png|thumb|280px|Caption 2]]
 
|[[Image:screenshotBlank.png|thumb|280px|Caption 3]]
 
 
|}
 
|}
  
Line 15: Line 15:
 
Type: CLI
 
Type: CLI
  
Category: Base or (Filtering, Registration, ''etc.'')
+
Category: Converters
  
 
===Authors, Collaborators & Contact===
 
===Authors, Collaborators & Contact===
Line 22: Line 22:
  
 
===Module Description===
 
===Module Description===
Overview of what the module does goes here.
+
Create a DICOM Series from a Slicer3 volume.
  
 
== Usage ==
 
== Usage ==
Line 57: Line 57:
 
===Source code & documentation===
 
===Source code & documentation===
  
Source Code: [http://www.na-mic.org/ViewVC/index.cgi/trunk/Applications/CLI/]
+
Source Code: [http://www.na-mic.org/ViewVC/index.cgi/trunk/Applications/CLI/ImageReadDicomWrite.cxx?view=annotate  ImageReadDicomWrite.cxx]
 +
 
 +
XML Description: [http://www.na-mic.org/ViewVC/index.cgi/trunk/Applications/CLI/ImageReadDicomWrite.xml?view=co  ImageReadDicomWrite.xml]
 +
 
 +
 
 +
Usage:
 +
<pre>
 +
  ./ImageReadDicomWrite  [--processinformationaddress <std::string>]
 +
                          [--xml] [--echo] [--reverseImages] [--dicomPrefix
 +
                          <std::string>] [--dicomDirectory <std::string>]
 +
                          [--rescaleSlope <double>] [--rescaleInterscept
 +
                          <double>] [--seriesDescription <std::string>]
 +
                          [--seriesNumber <std::string>] [--model
 +
                          <std::string>] [--manufacturer <std::string>]
 +
                          [--modality <std::string>] [--studyDescription
 +
                          <std::string>] [--studyComments <std::string>]
 +
                          [--studyDate <std::string>] [--studyID
 +
                          <std::string>] [--patientComments <std::string>]
 +
                          [--patientID <std::string>] [--patientName
 +
                          <std::string>] [--] [--version] [-h]
 +
                          <std::string>
 +
 
 +
 
 +
Where:
 +
 
 +
  --processinformationaddress <std::string>
 +
    Address of a structure to store process information (progress, abort,
 +
    etc.). (default: 0)
 +
 
 +
  --xml
 +
    Produce xml description of command line arguments (default: 0)
 +
 
 +
  --echo
 +
    Echo the command line arguments (default: 0)
 +
 
 +
  --reverseImages
 +
    Reverse the slices. (default: 0)
 +
 
 +
  --dicomPrefix <std::string>
 +
    The prefix of the DICOM filename. (default: IMG)
 +
 
 +
  --dicomDirectory <std::string>
 +
    The directory to contain the DICOM series. (default: ./)
 +
 
 +
  --rescaleSlope <double>
 +
    Rescale slope [0028-1053]. Converts pixel values on disk to pixel
 +
    values in memory. (Pixel value in memory) = (Pixel value on disk) *
 +
    rescaleSlope + rescaleInterscept.  Default is 1.0. Data values are
 +
    converted on write (the data is scaled and shifted so that the slope
 +
    and interscept will bring it back to the current intensity range).
 +
    (default: 1)
 +
 
 +
  --rescaleInterscept <double>
 +
    Rescale interscept [0028-1052]. Converts pixel values on disk to pixel
 +
    values in memory. (Pixel value in memory) = (Pixel value on disk) *
 +
    rescaleSlope + rescaleInterscept.  Default is 0.0. Data values are
 +
    converted on write (the data is scaled and shifted so that the slope
 +
    and interscept will bring it back to the current intensity range).
 +
    (default: 0)
 +
 
 +
  --seriesDescription <std::string>
 +
    Series description [0008-103E] (default: None)
 +
 
 +
  --seriesNumber <std::string>
 +
    The series number [0020-0011] (default: 123456)
 +
 
 +
  --model <std::string>
 +
    model [0008-1090] (default: None)
 +
 
 +
  --manufacturer <std::string>
 +
    Manufacturer [0008-0070] (default: GE Medical Systems)
 +
 
 +
  --modality <std::string>
 +
    Modality [0008-0060] (default: CT)
 +
 
 +
  --studyDescription <std::string>
 +
    Study description[0008-1030] (default: None)
 +
 
 +
  --studyComments <std::string>
 +
    Study comments[0032-4000] (default: None)
 +
 
 +
  --studyDate <std::string>
 +
    The date of the study [0008-0020] (default: 20060101)
 +
 
 +
  --studyID <std::string>
 +
    The study ID [0020-0010] (default: 123456)
 +
 
 +
  --patientComments <std::string>
 +
    Patient comments [0010-4000] (default: None)
 +
 
 +
  --patientID <std::string>
 +
    The patient ID [0010-0020] (default: 123456)
 +
 
 +
  --patientName <std::string>
 +
    The name of the patient [0010-0010] (default: Anonymous)
 +
 
 +
  --,  --ignore_rest
 +
    Ignores the rest of the labeled arguments following this flag.
 +
 
 +
  --version
 +
    Displays version information and exits.
 +
 
 +
  -h,  --help
 +
    Displays usage information and exits.
 +
 
 +
  <std::string>
 +
    (required)  Input volume to be resampled
 +
 
 +
 
 +
  Description: Create a DICOM Series
 +
 
 +
  Author(s): Bill Lorensen
  
Documentation:
+
  Acknowledgements: This command module was derived from Insight/Examples
 +
  (copyright) Insight Software Consortium
 +
</pre>
  
 
== More Information ==  
 
== More Information ==  

Latest revision as of 20:21, 26 May 2009

Home < Modules:CreateaDicomSeries-Documentation-3.4

Return to Slicer 3.4 Documentation

Gallery of New Features

Module Name

Create a DICOM Series

GUI panel

General Information

Module Type & Category

Type: CLI

Category: Converters

Authors, Collaborators & Contact

  • Author: Bill Lorensen
  • Contact: bill.lorensen at gmail.com

Module Description

Create a DICOM Series from a Slicer3 volume.

Usage

Examples, Use Cases & Tutorials

  • Note use cases for which this module is especially appropriate, and/or link to examples.
  • Link to examples of the module's use
  • Link to any existing tutorials

Quick Tour of Features and Use

List all the panels in your interface, their features, what they mean, and how to use them. For instance:

  • Input panel:
  • Parameters panel:
  • Output panel:
  • Viewing panel:

Development

Dependencies

Other modules or packages that are required for this module's use.

Known bugs

Follow this link to the Slicer3 bug tracker.


Usability issues

Follow this link to the Slicer3 bug tracker. Please select the usability issue category when browsing or contributing.

Source code & documentation

Source Code: ImageReadDicomWrite.cxx

XML Description: ImageReadDicomWrite.xml


Usage:

   ./ImageReadDicomWrite  [--processinformationaddress <std::string>]
                          [--xml] [--echo] [--reverseImages] [--dicomPrefix
                          <std::string>] [--dicomDirectory <std::string>]
                          [--rescaleSlope <double>] [--rescaleInterscept
                          <double>] [--seriesDescription <std::string>]
                          [--seriesNumber <std::string>] [--model
                          <std::string>] [--manufacturer <std::string>]
                          [--modality <std::string>] [--studyDescription
                          <std::string>] [--studyComments <std::string>]
                          [--studyDate <std::string>] [--studyID
                          <std::string>] [--patientComments <std::string>]
                          [--patientID <std::string>] [--patientName
                          <std::string>] [--] [--version] [-h]
                          <std::string>


 Where: 

   --processinformationaddress <std::string>
     Address of a structure to store process information (progress, abort,
     etc.). (default: 0)

   --xml
     Produce xml description of command line arguments (default: 0)

   --echo
     Echo the command line arguments (default: 0)

   --reverseImages
     Reverse the slices. (default: 0)

   --dicomPrefix <std::string>
     The prefix of the DICOM filename. (default: IMG)

   --dicomDirectory <std::string>
     The directory to contain the DICOM series. (default: ./)

   --rescaleSlope <double>
     Rescale slope [0028-1053]. Converts pixel values on disk to pixel
     values in memory. (Pixel value in memory) = (Pixel value on disk) *
     rescaleSlope + rescaleInterscept.  Default is 1.0. Data values are
     converted on write (the data is scaled and shifted so that the slope
     and interscept will bring it back to the current intensity range).
     (default: 1)

   --rescaleInterscept <double>
     Rescale interscept [0028-1052]. Converts pixel values on disk to pixel
     values in memory. (Pixel value in memory) = (Pixel value on disk) *
     rescaleSlope + rescaleInterscept.  Default is 0.0. Data values are
     converted on write (the data is scaled and shifted so that the slope
     and interscept will bring it back to the current intensity range).
     (default: 0)

   --seriesDescription <std::string>
     Series description [0008-103E] (default: None)

   --seriesNumber <std::string>
     The series number [0020-0011] (default: 123456)

   --model <std::string>
     model [0008-1090] (default: None)

   --manufacturer <std::string>
     Manufacturer [0008-0070] (default: GE Medical Systems)

   --modality <std::string>
     Modality [0008-0060] (default: CT)

   --studyDescription <std::string>
     Study description[0008-1030] (default: None)

   --studyComments <std::string>
     Study comments[0032-4000] (default: None)

   --studyDate <std::string>
     The date of the study [0008-0020] (default: 20060101)

   --studyID <std::string>
     The study ID [0020-0010] (default: 123456)

   --patientComments <std::string>
     Patient comments [0010-4000] (default: None)

   --patientID <std::string>
     The patient ID [0010-0020] (default: 123456)

   --patientName <std::string>
     The name of the patient [0010-0010] (default: Anonymous)

   --,  --ignore_rest
     Ignores the rest of the labeled arguments following this flag.

   --version
     Displays version information and exits.

   -h,  --help
     Displays usage information and exits.

   <std::string>
     (required)  Input volume to be resampled


   Description: Create a DICOM Series

   Author(s): Bill Lorensen

   Acknowledgements: This command module was derived from Insight/Examples
   (copyright) Insight Software Consortium

More Information

Acknowledgment

This work is part of the National Alliance for Medical Image Computing (NAMIC), funded by the National Institutes of Health through the NIH Roadmap for Medical Research, Grant U54 EB005149. Information on the National Centers for Biomedical Computing can be obtained from National Centers for Biomedical Computing.

References