public class CommonConvertedAttributeGeneration extends Object
A class to support converting proprietary image input format files into images of a specified or appropriate SOP Class.
Constructor and Description |
---|
CommonConvertedAttributeGeneration() |
Modifier and Type | Method and Description |
---|---|
static void |
generateCommonAttributes(AttributeList list,
String patientName,
String patientID,
String studyID,
String seriesNumber,
String instanceNumber,
String modality,
String sopClass,
boolean generateUnassignedConverted)
Generate common attributes for converted images.
|
static String |
selectSOPClassForModalityNumberOfFramesAndPixelCharacteristics(String modality,
int numberOfFrames,
int samplesPerPixel,
int bitsAllocated,
boolean isFloatPixelData)
Select a suitable SOP Class based on modality, number of frames and pixel data characteristics.
|
public static void generateCommonAttributes(AttributeList list, String patientName, String patientID, String studyID, String seriesNumber, String instanceNumber, String modality, String sopClass, boolean generateUnassignedConverted) throws DicomException
Generate common attributes for converted images.
Does NOT add ManufacturerModelName ... that should be added by caller.
Does NOT call CodingSchemeIdentification.replaceCodingSchemeIdentificationSequenceWithCodingSchemesUsedInAttributeList ... that should be done by caller.
Creates some Series and Equipment IE Attributes, so caller needs to override these if multiple Instances in Series to assure common values.
list
- patientName
- patientID
- studyID
- seriesNumber
- instanceNumber
- modality
- may be nullsopClass
- may be nullgenerateUnassignedConverted
- whether or not to generate empty Unassigned Converted Attributes Sequences (populates Shared and Per-Frame Functional Groups)DicomException
NumberFormatException
public static String selectSOPClassForModalityNumberOfFramesAndPixelCharacteristics(String modality, int numberOfFrames, int samplesPerPixel, int bitsAllocated, boolean isFloatPixelData)
Select a suitable SOP Class based on modality, number of frames and pixel data characteristics.
If multi-frame selects legacy converted rather than true enhanced multi-frame SOP Classes.
Worst case returns the Secondary Capture Image Storage SOP Class.
modality
- may be null or empty stringnumberOfFrames
- samplesPerPixel
- bitsAllocated
- isFloatPixelData
-