Create a DICOM Series CLP
From user's Wiki!
File:CreateaDICOMSeriesCLP.png
Create a DICOM Series
General Information
- Type: CLP
- Category: Converters
- Author: Stephen Aylward
- Contributor: Bill Lorensen
- Contact: stephen.aylward at kitware.com
- Description: Create a DICOM Series from a 3D volume. User can specify values for selected DICOM tags in the UI. Given the number of tags DICOM series have, it is impossible to expose all tags in UI. So only important tags can be set by the user. More...
Usage
Parameters
Label | Type | Flag / Index | Default value / Channel | Description |
---|---|---|---|---|
Patient Parameters | ||||
Patient Name | string | --patientName | Anonymous | The name of the patient [0010-0010] |
Patient ID | string | --patientID | 123456 | The patient ID [0010-0020] |
Patient Comments | string | --patientComments | None | Patient comments [0010-4000] |
Study Parameters | ||||
Study ID | string | --studyID | 123456 | The study ID [0020-0010] |
Study Date | string | --studyDate | 20060101 | The date of the study [0008-0020] |
Study Comments | string | --studyComments | None | Study comments[0032-4000] |
Study Descriptions | string | --studyDescription | None | Study description[0008-1030] |
Modality | string | --modality | CT | Modality [0008-0060] |
Manufacturer | string | --manufacturer | CT | GE Medical Systems |
Model | string | --model | None | model [0008-1090] |
Series Parameters | ||||
Series Number | string | --seriesNumber | 123456 | The series number [0020-0011] |
Series Description | string | --seriesDescription | None | Series description [0008-103E] |
Image Parameters | ||||
Rescale intercept | double | --rescaleIntercept | 0.0 | Rescale interscept [0028-1052]. Converts pixel values on disk to pixel values in memory. (Pixel value in memory) = (Pixel value on disk) * rescaleSlope + rescaleIntercept. 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) |
Rescale slope | double | --rescaleSlope | 1.0 | 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) |
Input | ||||
Input Volume | image | index 0 | input | Input volume to be resampled |
Output | ||||
DICOM Directory | directory | --dicomDirectory | ./ | The directory to contain the DICOM series |
DICOM filename prefix | string | --dicomPrefix | IMG | The prefix of the DICOM filename |
Reverse Slices | boolean | --reverseImages | false | Reverse the slices |
Examples
Create a DICOM series from a 3D image.
File:CreateaDICOMSeriesCLP.png
Create a DICOM Series
Development
Source code: C++ Source code and XML description