Class CommonConvertedAttributeGeneration


  • public class CommonConvertedAttributeGeneration
    extends java.lang.Object

    A class to support converting proprietary image input format files into images of a specified or appropriate SOP Class.

    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void generateCommonAttributes​(AttributeList list, java.lang.String patientName, java.lang.String patientID, java.lang.String studyID, java.lang.String seriesNumber, java.lang.String instanceNumber, java.lang.String modality, java.lang.String sopClass, boolean generateUnassignedConverted)
      Generate common attributes for converted images.
      static java.lang.String selectSOPClassForModalityNumberOfFramesAndPixelCharacteristics​(java.lang.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.
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CommonConvertedAttributeGeneration

        public CommonConvertedAttributeGeneration()
    • Method Detail

      • selectSOPClassForModalityNumberOfFramesAndPixelCharacteristics

        public static java.lang.String selectSOPClassForModalityNumberOfFramesAndPixelCharacteristics​(java.lang.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.

        Parameters:
        modality - may be null or empty string
        numberOfFrames -
        samplesPerPixel -
        bitsAllocated -
        isFloatPixelData -
        Returns:
        the selected SOP Class (never null or empty)
      • generateCommonAttributes

        public static void generateCommonAttributes​(AttributeList list,
                                                    java.lang.String patientName,
                                                    java.lang.String patientID,
                                                    java.lang.String studyID,
                                                    java.lang.String seriesNumber,
                                                    java.lang.String instanceNumber,
                                                    java.lang.String modality,
                                                    java.lang.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.

        Parameters:
        list -
        patientName -
        patientID -
        studyID -
        seriesNumber -
        instanceNumber -
        modality - may be null
        sopClass - may be null
        generateUnassignedConverted - whether or not to generate empty Unassigned Converted Attributes Sequences (populates Shared and Per-Frame Functional Groups)
        Throws:
        DicomException
        java.lang.NumberFormatException