Compression as J4 not Working?

  • Whenever I set Conquest to compress 12-bit images as j4, which should be:


    j4 = JPEGExtended2and4 lossy (15%) - 1.2.840.10008.1.2.4.51


    It seems to compress as j3, which is:


    j3 = JPEG baseline 1 (8 bit) lossy (8%) - 1.2.840.10008.1.2.4.50


    Not sure whether this is a bug.


    Such images are, for example not viewable on clearcanvas workstation which says it cannot load JPEG baseline codec for 12-bit images.


    Thanks.

  • Hi,


    great. It works as follows, if I remember correctly. If asking for J4, conquest will ask for J3 and J4 and take the first one accepted. It may be that the order is incorrect in the request.


    This is what it asks for 3 and 4:


    uid.Set("1.2.840.10008.1.2.4.51"); TrnSyntax.Set(uid);
    PresContext.AddTransferSyntax(TrnSyntax);
    uid.Set("1.2.840.10008.1.2.4.50"); TrnSyntax.Set(uid);
    PresContext.AddTransferSyntax(TrnSyntax);


    This is what it does to check acceptance, based on the first accepted transfer syntax:


    else if (strcmp(p, "1.2.840.10008.1.2.4.50")==0) strcpy(AcceptedCompressionType, "j3");
    else if (strcmp(p, "1.2.840.10008.1.2.4.51")==0) strcpy(AcceptedCompressionType, "j4");


    So maybe CC changes the order of transfer syntaxes?


    Marcel

  • Actually, I am not sure what is happening. I have also tried j5 and j6. Calling Conquest says accepted is j3 and proceeds to send j3, which CCWS is unable to open.


    Luckily for my set up, the consequence of this is only a little inconvenience but nothing that would significantly affect the functioning of the system. So, I can live with it.


    Thanks.

  • List is as follows:


    J1>j1
    J2>j1
    J3>j3
    J4>j3
    J5>j3
    J6>j3
    Uj>uj
    Jk>jk
    Jl>jk






    Well, I am using CC ImageServer 2.0 (last full version that was free).


    This is what they say about supported compression:


    Supported Compression Transfer Syntaxes


    The following table lists the supported transfer syntaxes by the ImageServer. The ImageServer comes with codecs that support RLE compression and standard Lossless and Lossy JPEG compression. The ImageServer utilizes the Independent JPEG Group library for JPEG compression and contains a managed C# implementation of the RLE codec.


    Although not listed, the Enterprise edition of the ImageServer contains plugins for supporting JPEG2000 compression. These plugins utilize the Accusoft Pegasus JPEG2000 library, and require licensing fees for usage.


    DICOM Transfer Syntax
    Description

    1.2.840.10008.1.2.5
    Run Length Encoding (RLE) Compression

    1.2.840.10008.1.2.4.57
    JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1]): Default Transfer Syntax for Lossless JPEG Image Compression

    1.2.840.10008.1.2.4.51
    JPEG Extended (Process 2 & 4): Default Transfer Syntax for Lossy JPEG 12 Bit Image Compression (Process 4 only)

    1.2.840.10008.1.2.4.50
    JPEG Baseline (Process 1): Default Transfer Syntax for Lossy JPEG 8 Bit Image Compression

  • Hm,


    This is my logic:


    "1.2.840.10008.1.2.4.70, "j1"
    "1.2.840.10008.1.2.4.57, "j2"
    "1.2.840.10008.1.2.4.50, "j3"
    "1.2.840.10008.1.2.4.51, "j4"
    "1.2.840.10008.1.2.4.53, "j5"
    "1.2.840.10008.1.2.4.55", "j6"
    "1.2.840.10008.1.2.4.90", "jk"
    "1.2.840.10008.1.2.4.91", "jl"


    It does not seem to fit their documentation. Is there any logging on the CC side?


    Marcel

  • Thanks Marcel.


    Below please find Debug log sending 12-bit CT using j4.


    Sorry, I am having trouble attaching the text file.


    So I will just paste some of the text:


    2015-07-21 07:14:41,788 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: QueryServerPartitionTransferSyntaxes
    2015-07-21 07:14:41,788 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: QueryServerPartitionSopClasses
    2015-07-21 07:14:41,788 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: QueryServerPartitionSopClasses
    2015-07-21 07:14:41,804 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: QueryServerPartitionSopClasses
    2015-07-21 07:14:41,851 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT TOP 1 * FROM Device WHERE Device.AeTitle = @DeviceAeTitle AND Device.ServerPartitionGUID = @DeviceServerPartitionGUID
    2015-07-21 07:14:41,882 [DicomServer: 213.150.99.110 [30]] DEBUG - UPDATE [Device] SET [LastAccessedTime]=@LastAccessedTime WHERE [GUID]=@PrimaryKey
    2015-07-21 07:14:41,882 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT TOP 1 * FROM Device WHERE Device.AeTitle = @DeviceAeTitle AND Device.ServerPartitionGUID = @DeviceServerPartitionGUID
    2015-07-21 07:14:41,898 [DicomServer: 213.150.99.110 [30]] DEBUG - UPDATE [Device] SET [LastAccessedTime]=@LastAccessedTime WHERE [GUID]=@PrimaryKey
    2015-07-21 07:14:41,929 [DicomServer: 213.150.99.110 [30]] INFO - Received association:
    Application Context: ==DICOM Application Context Name
    Implementation Class: 1.2.826.0.1.3680043.2.135.1066.101
    Implementation Version: 1.4.16/WIN32
    Local Maximum PDU Size: 116794
    Remote Maximum PDU Size: 16384
    Called AE Title: TEST_KE
    Calling AE Title: CONQ_TMATERHB
    Presentation Contexts: 1
    Presentation Context 43 [Accept] Abstract: CT Image Storage Transfer: JPEG Baseline (Process 1): Default Transfer Syntax for Lossy JPEG 8 Bit Image Compression


    2015-07-21 07:14:42,773 [WorkQueue:22] DEBUG - Executing stored procedure: QueryWorkQueue
    2015-07-21 07:14:42,773 [WorkQueue:22] DEBUG - Executing stored procedure: QueryWorkQueue
    2015-07-21 07:14:42,773 [WorkQueue:22] DEBUG - Executing stored procedure: QueryWorkQueue
    2015-07-21 07:14:46,710 [DicomServer: 213.150.99.110 [30]] DEBUG - Receive MetaInfo:
    (0000,0002) UI =CT Image Storage # 26 Affected SOP Class UID 1
    (0000,0100) US 1 # 2 Command Field 1
    (0000,0110) US 4919 # 2 Message ID 1
    (0000,0700) US 0 # 2 Priority 1
    (0000,0800) US 258 # 2 Data Set Type 1
    (0000,1000) UI [1.2.840.113704.7.1.1.7416.1437252308.117] # 40 Affected SOP Instance UID 1
    (0000,1030) AE [C] # 2 Move Originator Application Entity Title 1
    (0000,1031) US 5 # 2 Move Originator Message ID 1


    2015-07-21 07:14:46,726 [DicomServer: 213.150.99.110 [30]] DEBUG - Receive DataSet:
    (0008,0008) CS [DERIVED\SECONDARY\MPR] # 22 Image Type 2-N
    (0008,0012) DA [20150718] # 8 Instance Creation Date 1
    (0008,0013) TM [234508] # 6 Instance Creation Time 1
    (0008,0016) UI =CT Image Storage # 26 SOP Class UID 1
    (0008,0018) UI [1.2.840.113704.7.1.1.7416.1437252308.117] # 40 SOP Instance UID 1
    (0008,0020) DA [20150718] # 8 Study Date 1
    (0008,0022) DA [20150718] # 8 Acquisition Date 1
    (0008,0023) DA [20150718] # 8 Content Date 1
    (0008,0030) TM [233806] # 6 Study Time 1
    (0008,0032) TM [234052] # 6 Acquisition Time 1
    (0008,0033) TM [233806] # 6 Content Time 1
    (0008,0050) SH [] # 0 Accession Number 1
    (0008,0060) CS [CT] # 2 Modality 1
    (0008,0070) LO [Philips] # 8 Manufacturer 1
    (0008,0080) LO [DEMO INSTITUTION] # 16 Institution Name 1
    (0008,0081) ST [NAIROBI] # 8 Institution Address 1
    (0008,0090) PN [] # 0 Referring Physician's Name 1
    (0008,1010) SH [HOST-3527] # 10 Station Name 1
    (0008,1030) LO [BRAIN-ANXIETY DISODER/HEADACHE,PREVIOUS SURG 2012- ANURYSM] # 58 Study Description 1
    (0008,103e) LO [POST] # 4 Series Description 1
    (0008,1040) LO [Radiology] # 10 Institutional Department Name 1
    (0008,1070) PN [SERPEN] # 6 Operators' Name 1-N
    (0008,1090) LO [Brilliance 6 Dunlee] # 20 Manufacturer's Model Name 1
    (0008,1140) SQ Referenced Image Sequence
    Item:
    > (0008,1150) UI =CT Image Storage # 26 Referenced SOP Class UID 1
    > (0008,1155) UI [1.2.840.113704.1.111.2988.1437251888.1] # 38 Referenced SOP Instance UID 1


    (0010,0010) PN [xxxx] # 12 Patient's Name 1
    (0010,0020) LO [xxxx] # 22 Patient ID 1
    (0010,0030) DA [] # 0 Patient's Birth Date 1
    (0010,0040) CS [F] # 2 Patient's Sex 1
    (0010,1010) AS [049Y] # 4 Patient's Age 1
    (0018,0010) LO [CONTRAST] # 8 Contrast/Bolus Agent 1
    (0018,0022) CS [HELIX] # 6 Scan Options 1-N
    (0018,0050) DS [5] # 2 Slice Thickness 1
    (0018,0060) DS [120] # 4 KVP 1
    (0018,0090) DS [500] # 4 Data Collection Diameter 1
    (0018,1016) LO [Philips] # 8 Secondary Capture Device Manufacturers 1
    (0018,1018) LO [MxView] # 6 Secondary Capture Device Manufacturer's Model Name 1
    (0018,1020) LO [2.2.6] # 6 Software Version(s) 1-N
    (0018,1030) LO [PRE/POST BRAIN/Head] # 20 Protocol Name 1
    (0018,1100) DS [214] # 4 Reconstruction Diameter 1
    (0018,1120) DS [0] # 2 Gantry/Detector Tilt 1
    (0018,1130) DS [143] # 4 Table Height 1
    (0018,1140) CS [CW] # 2 Rotation Direction 1
    (0018,1151) IS [180] # 4 X-Ray Tube Current 1
    (0018,1152) IS [415] # 4 Exposure 1
    (0018,1160) SH [UC] # 2 Filter Type 1
    (0018,1210) SH [UC] # 2 Convolution Kernel 1-N
    (0018,5100) CS [HFS] # 4 Patient Position 1
    (0020,000d) UI [1.2.840.113704.1.111.2604.1437251878.16] # 40 Study Instance UID 1
    (0020,000e) UI [1.2.840.113704.7.1.1.7416.1437252308.1] # 38 Series Instance UID 1
    (0020,0010) SH [13809] # 6 Study ID 1
    (0020,0011) IS [80216] # 6 Series Number 1
    (0020,0012) IS [] # 0 Acquisition Number 1
    (0020,0013) IS [36] # 2 Instance Number 1
    (0020,0020) CS [] # 0 Patient Orientation 2
    (0020,0032) DS [-95.0666562\-19.3484535\183.00015] # 34 Image Position (Patient) 3
    (0020,0037) DS [0.994521895\0.104528463\0\-0.104528463\0.994521895\0] # 52 Image Orientation (Patient) 6
    (0020,0052) UI [1.2.840.113704.1.111.4676.1437250960.5] # 38 Frame of Reference UID 1
    (0020,1040) LO [] # 0 Position Reference Indicator 1
    (0020,1041) DS [122.5] # 6 Slice Location 1
    (0020,4000) LT [POST] # 4 Image Comments 1
    (0028,0002) US 1 # 2 Samples per Pixel 1
    (0028,0004) CS [MONOCHROME2] # 12 Photometric Interpretation 1
    (0028,0010) US 512 # 2 Rows 1
    (0028,0011) US 512 # 2 Columns 1
    (0028,0030) DS [0.417152408\0.417152408] # 24 Pixel Spacing 2
    (0028,0100) US 16 # 2 Bits Allocated 1
    (0028,0101) US 12 # 2 Bits Stored 1
    (0028,0102) US 11 # 2 High Bit 1
    (0028,0103) US 0 # 2 Pixel Representation 1
    (0028,1050) DS [40\40] # 6 Window Center 1-N
    (0028,1051) DS [80\80] # 6 Window Width 1-N
    (0028,1052) DS [-1024] # 6 Rescale Intercept 1
    (0028,1053) DS [1] # 2 Rescale Slope 1
    (0028,2110) CS [01] # 2 Lossy Image Compression 1
    (0040,0253) SH [1380988] # 8 Performed Procedure Step ID 1
    (00e1,0010) LO [ELSCINT1] # 8 Private Tag 1-N
    (00e1,1014) UN (00e1,1014) Private Tag # 2 Private Tag 1-N
    (00e1,1022) UN (00e1,1022) Private Tag # 4 Private Tag 1-N
    (00e1,1023) UN (00e1,1023) Private Tag # 4 Private Tag 1-N
    (07a1,0010) LO [ELSCINT1] # 8 Private Tag 1-N
    (07a1,1010) UN (07a1,1010) Private Tag # 4 Private Tag 1-N
    (7fe0,0010) OW (no value available) # 0 Pixel Data 1


    2015-07-21 07:14:46,788 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT * FROM Filesystem
    2015-07-21 07:14:46,804 [DicomServer: 213.150.99.110 [30]] INFO - Filesystem Status:
    Primary Filesystem : Enabled | Online | Readable | Writable | 65.02 GB Available


    2015-07-21 07:14:46,819 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: QueryStudyStorageLocation
    2015-07-21 07:14:46,819 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT TOP 1 * FROM StudyStorage WHERE StudyStorage.ServerPartitionGUID = @StudyStorageServerPartitionGUID AND StudyStorage.StudyInstanceUid = @StudyStorageStudyInstanceUid
    2015-07-21 07:14:46,851 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: InsertStudyStorage
    2015-07-21 07:14:46,913 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT * FROM ArchiveStudyStorage WHERE ArchiveStudyStorage.StudyStorageGUID = @ArchiveStudyStorageStudyStorageGUID ORDER BY ArchiveStudyStorage.ArchiveTime DESC
    2015-07-21 07:14:46,944 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT COUNT(*) FROM WorkQueue WHERE WorkQueue.StudyStorageGUID = @WorkQueueStudyStorageGUID AND WorkQueue.WorkQueueTypeEnum = @WorkQueueWorkQueueTypeEnum AND EXISTS (SELECT * FROM WorkQueueUid WHERE WorkQueue.GUID = WorkQueueUid.WorkQueueGUID AND WorkQueueUid.SeriesInstanceUid = @WorkQueueUidSeriesInstanceUid AND WorkQueueUid.SopInstanceUid = @WorkQueueUidSopInstanceUid)
    2015-07-21 07:14:46,960 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT COUNT(*) FROM StudyIntegrityQueue WHERE StudyIntegrityQueue.StudyStorageGUID = @StudyIntegrityQueueStudyStorageGUID AND EXISTS (SELECT * FROM StudyIntegrityQueueUid WHERE StudyIntegrityQueue.GUID = StudyIntegrityQueueUid.StudyIntegrityQueueGUID AND StudyIntegrityQueueUid.SeriesInstanceUid = @StudyIntegrityQueueUidSeriesInstanceUid AND StudyIntegrityQueueUid.SopInstanceUid = @StudyIntegrityQueueUidSopInstanceUid)
    2015-07-21 07:14:47,023 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: InsertWorkQueue
    2015-07-21 07:14:47,101 [DicomServer: 213.150.99.110 [30]] INFO - Received SOP Instance 1.2.840.113704.7.1.1.7416.1437252308.117 from CONQ_TMATERHB to TEST_KE (StudyUid:1.2.840.113704.1.111.2604.1437251878.16)
    2015-07-21 07:14:47,116 [DicomServer: 213.150.99.110 [30]] DEBUG - Send MetaInfo:
    (0000,0002) UI =CT Image Storage # 26 Affected SOP Class UID 1
    (0000,0100) US 32769 # 2 Command Field 1
    (0000,0120) US 4919 # 2 Message ID Being Responded To 1
    (0000,0800) US 257 # 2 Data Set Type 1
    (0000,0900) US 0 # 2 Status 1
    (0000,1000) UI [1.2.840.113704.7.1.1.7416.1437252308.117] # 40 Affected SOP Instance UID 1


    2015-07-21 07:14:47,116 [DicomServer: 213.150.99.110 [30]] DEBUG - Send DataSet:


    2015-07-21 07:14:47,210 [DicomServer: 213.150.99.110 [30]] DEBUG - Receive MetaInfo:
    (0000,0002) UI =CT Image Storage # 26 Affected SOP Class UID 1
    (0000,0100) US 1 # 2 Command Field 1
    (0000,0110) US 4957 # 2 Message ID 1
    (0000,0700) US 0 # 2 Priority 1
    (0000,0800) US 258 # 2 Data Set Type 1
    (0000,1000) UI [1.2.840.113704.7.1.1.7416.1437252308.118] # 40 Affected SOP Instance UID 1
    (0000,1030) AE [C] # 2 Move Originator Application Entity Title 1
    (0000,1031) US 5 # 2 Move Originator Message ID 1


    2015-07-21 07:14:47,210 [DicomServer: 213.150.99.110 [30]] DEBUG - Receive DataSet:
    (0008,0008) CS [DERIVED\SECONDARY\MPR] # 22 Image Type 2-N
    (0008,0012) DA [20150718] # 8 Instance Creation Date 1
    (0008,0013) TM [234508] # 6 Instance Creation Time 1
    (0008,0016) UI =CT Image Storage # 26 SOP Class UID 1
    (0008,0018) UI [1.2.840.113704.7.1.1.7416.1437252308.118] # 40 SOP Instance UID 1
    (0008,0020) DA [20150718] # 8 Study Date 1
    (0008,0022) DA [20150718] # 8 Acquisition Date 1
    (0008,0023) DA [20150718] # 8 Content Date 1
    (0008,0030) TM [233806] # 6 Study Time 1
    (0008,0032) TM [234052] # 6 Acquisition Time 1
    (0008,0033) TM [233806] # 6 Content Time 1
    (0008,0050) SH [] # 0 Accession Number 1
    (0008,0060) CS [CT] # 2 Modality 1
    (0008,0070) LO [Philips] # 8 Manufacturer 1
    (0008,0080) LO [DEMO INSTITUTION] # 16 Institution Name 1
    (0008,0081) ST [NAIROBI] # 8 Institution Address 1
    (0008,0090) PN [] # 0 Referring Physician's Name 1
    (0008,1010) SH [HOST-3527] # 10 Station Name 1
    (0008,1030) LO [BRAIN-ANXIETY DISODER/HEADACHE,PREVIOUS SURG 2012- ANURYSM] # 58 Study Description 1
    (0008,103e) LO [POST] # 4 Series Description 1
    (0008,1040) LO [Radiology] # 10 Institutional Department Name 1
    (0008,1070) PN [SERPEN] # 6 Operators' Name 1-N
    (0008,1090) LO [Brilliance 6 Dunlee] # 20 Manufacturer's Model Name 1
    (0008,1140) SQ Referenced Image Sequence
    Item:
    > (0008,1150) UI =CT Image Storage # 26 Referenced SOP Class UID 1
    > (0008,1155) UI [1.2.840.113704.1.111.2988.1437251888.1] # 38 Referenced SOP Instance UID 1


    (0010,0010) PN [JANE WANJIKU] # 12 Patient's Name 1
    (0010,0020) LO [INSTITUTION1-11029209] # 22 Patient ID 1
    (0010,0030) DA [] # 0 Patient's Birth Date 1
    (0010,0040) CS [F] # 2 Patient's Sex 1
    (0010,1010) AS [049Y] # 4 Patient's Age 1
    (0018,0010) LO [CONTRAST] # 8 Contrast/Bolus Agent 1
    (0018,0022) CS [HELIX] # 6 Scan Options 1-N
    (0018,0050) DS [5] # 2 Slice Thickness 1
    (0018,0060) DS [120] # 4 KVP 1
    (0018,0090) DS [500] # 4 Data Collection Diameter 1
    (0018,1016) LO [Philips] # 8 Secondary Capture Device Manufacturers 1
    (0018,1018) LO [MxView] # 6 Secondary Capture Device Manufacturer's Model Name 1
    (0018,1020) LO [2.2.6] # 6 Software Version(s) 1-N
    (0018,1030) LO [PRE/POST BRAIN/Head] # 20 Protocol Name 1
    (0018,1100) DS [214] # 4 Reconstruction Diameter 1
    (0018,1120) DS [0] # 2 Gantry/Detector Tilt 1
    (0018,1130) DS [143] # 4 Table Height 1
    (0018,1140) CS [CW] # 2 Rotation Direction 1
    (0018,1151) IS [180] # 4 X-Ray Tube Current 1
    (0018,1152) IS [415] # 4 Exposure 1
    (0018,1160) SH [UC] # 2 Filter Type 1
    (0018,1210) SH [UC] # 2 Convolution Kernel 1-N
    (0018,5100) CS [HFS] # 4 Patient Position 1
    (0020,000d) UI [1.2.840.113704.1.111.2604.1437251878.16] # 40 Study Instance UID 1
    (0020,000e) UI [1.2.840.113704.7.1.1.7416.1437252308.1] # 38 Series Instance UID 1
    (0020,0010) SH [13809] # 6 Study ID 1
    (0020,0011) IS [80216] # 6 Series Number 1
    (0020,0012) IS [] # 0 Acquisition Number 1
    (0020,0013) IS [37] # 2 Instance Number 1
    (0020,0020) CS [] # 0 Patient Orientation 2
    (0020,0032) DS [-95.0666562\-19.3484535\186.50015] # 34 Image Position (Patient) 3
    (0020,0037) DS [0.994521895\0.104528463\0\-0.104528463\0.994521895\0] # 52 Image Orientation (Patient) 6
    (0020,0052) UI [1.2.840.113704.1.111.4676.1437250960.5] # 38 Frame of Reference UID 1
    (0020,1040) LO [] # 0 Position Reference Indicator 1
    (0020,1041) DS [126] # 4 Slice Location 1
    (0020,4000) LT [POST] # 4 Image Comments 1
    (0028,0002) US 1 # 2 Samples per Pixel 1
    (0028,0004) CS [MONOCHROME2] # 12 Photometric Interpretation 1
    (0028,0010) US 512 # 2 Rows 1
    (0028,0011) US 512 # 2 Columns 1
    (0028,0030) DS [0.417152408\0.417152408] # 24 Pixel Spacing 2
    (0028,0100) US 16 # 2 Bits Allocated 1
    (0028,0101) US 12 # 2 Bits Stored 1
    (0028,0102) US 11 # 2 High Bit 1
    (0028,0103) US 0 # 2 Pixel Representation 1
    (0028,1050) DS [40\40] # 6 Window Center 1-N
    (0028,1051) DS [80\80] # 6 Window Width 1-N
    (0028,1052) DS [-1024] # 6 Rescale Intercept 1
    (0028,1053) DS [1] # 2 Rescale Slope 1
    (0028,2110) CS [01] # 2 Lossy Image Compression 1
    (0040,0253) SH [1380988] # 8 Performed Procedure Step ID 1
    (00e1,0010) LO [ELSCINT1] # 8 Private Tag 1-N
    (00e1,1014) UN (00e1,1014) Private Tag # 2 Private Tag 1-N
    (00e1,1022) UN (00e1,1022) Private Tag # 4 Private Tag 1-N
    (00e1,1023) UN (00e1,1023) Private Tag # 4 Private Tag 1-N
    (07a1,0010) LO [ELSCINT1] # 8 Private Tag 1-N
    (07a1,1010) UN (07a1,1010) Private Tag # 4 Private Tag 1-N
    (7fe0,0010) OW (no value available) # 0 Pixel Data 1


    2015-07-21 07:14:47,210 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: QueryStudyStorageLocation
    2015-07-21 07:14:47,226 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT * FROM ArchiveStudyStorage WHERE ArchiveStudyStorage.StudyStorageGUID = @ArchiveStudyStorageStudyStorageGUID ORDER BY ArchiveStudyStorage.ArchiveTime DESC
    2015-07-21 07:14:47,226 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT COUNT(*) FROM WorkQueue WHERE WorkQueue.StudyStorageGUID = @WorkQueueStudyStorageGUID AND WorkQueue.WorkQueueTypeEnum = @WorkQueueWorkQueueTypeEnum AND EXISTS (SELECT * FROM WorkQueueUid WHERE WorkQueue.GUID = WorkQueueUid.WorkQueueGUID AND WorkQueueUid.SeriesInstanceUid = @WorkQueueUidSeriesInstanceUid AND WorkQueueUid.SopInstanceUid = @WorkQueueUidSopInstanceUid)
    2015-07-21 07:14:47,226 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT COUNT(*) FROM StudyIntegrityQueue WHERE StudyIntegrityQueue.StudyStorageGUID = @StudyIntegrityQueueStudyStorageGUID AND EXISTS (SELECT * FROM StudyIntegrityQueueUid WHERE StudyIntegrityQueue.GUID = StudyIntegrityQueueUid.StudyIntegrityQueueGUID AND StudyIntegrityQueueUid.SeriesInstanceUid = @StudyIntegrityQueueUidSeriesInstanceUid AND StudyIntegrityQueueUid.SopInstanceUid = @StudyIntegrityQueueUidSopInstanceUid)
    2015-07-21 07:14:47,241 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: InsertWorkQueue
    2015-07-21 07:14:47,241 [DicomServer: 213.150.99.110 [30]] INFO - Received SOP Instance 1.2.840.113704.7.1.1.7416.1437252308.118 from CONQ_TMATERHB to TEST_KE (StudyUid:1.2.840.113704.1.111.2604.1437251878.16)
    2015-07-21 07:14:47,241 [DicomServer: 213.150.99.110 [30]] DEBUG - Send MetaInfo:
    (0000,0002) UI =CT Image Storage # 26 Affected SOP Class UID 1
    (0000,0100) US 32769 # 2 Command Field 1
    (0000,0120) US 4957 # 2 Message ID Being Responded To 1
    (0000,0800) US 257 # 2 Data Set Type 1
    (0000,0900) US 0 # 2 Status 1
    (0000,1000) UI [1.2.840.113704.7.1.1.7416.1437252308.118] # 40 Affected SOP Instance UID 1


    2015-07-21 07:14:47,241 [DicomServer: 213.150.99.110 [30]] DEBUG - Send DataSet:


    2015-07-21 07:14:47,304 [DicomServer: 213.150.99.110 [30]] DEBUG - Receive MetaInfo:
    (0000,0002) UI =CT Image Storage # 26 Affected SOP Class UID 1
    (0000,0100) US 1 # 2 Command Field 1
    (0000,0110) US 4995 # 2 Message ID 1
    (0000,0700) US 0 # 2 Priority 1
    (0000,0800) US 258 # 2 Data Set Type 1
    (0000,1000) UI [1.2.840.113704.7.1.1.7416.1437252308.119] # 40 Affected SOP Instance UID 1
    (0000,1030) AE [C] # 2 Move Originator Application Entity Title 1
    (0000,1031) US 5 # 2 Move Originator Message ID 1


    2015-07-21 07:14:47,304 [DicomServer: 213.150.99.110 [30]] DEBUG - Receive DataSet:
    (0008,0008) CS [DERIVED\SECONDARY\MPR] # 22 Image Type 2-N
    (0008,0012) DA [20150718] # 8 Instance Creation Date 1
    (0008,0013) TM [234508] # 6 Instance Creation Time 1
    (0008,0016) UI =CT Image Storage # 26 SOP Class UID 1
    (0008,0018) UI [1.2.840.113704.7.1.1.7416.1437252308.119] # 40 SOP Instance UID 1
    (0008,0020) DA [20150718] # 8 Study Date 1
    (0008,0022) DA [20150718] # 8 Acquisition Date 1
    (0008,0023) DA [20150718] # 8 Content Date 1
    (0008,0030) TM [233806] # 6 Study Time 1
    (0008,0032) TM [234052] # 6 Acquisition Time 1
    (0008,0033) TM [233806] # 6 Content Time 1
    (0008,0050) SH [] # 0 Accession Number 1
    (0008,0060) CS [CT] # 2 Modality 1
    (0008,0070) LO [Philips] # 8 Manufacturer 1
    (0008,0080) LO [DEMO INSTITUTION] # 16 Institution Name 1
    (0008,0081) ST [NAIROBI] # 8 Institution Address 1
    (0008,0090) PN [] # 0 Referring Physician's Name 1
    (0008,1010) SH [HOST-3527] # 10 Station Name 1
    (0008,1030) LO [BRAIN-ANXIETY DISODER/HEADACHE,PREVIOUS SURG 2012- ANURYSM] # 58 Study Description 1
    (0008,103e) LO [POST] # 4 Series Description 1
    (0008,1040) LO [Radiology] # 10 Institutional Department Name 1
    (0008,1070) PN [SERPEN] # 6 Operators' Name 1-N
    (0008,1090) LO [Brilliance 6 Dunlee] # 20 Manufacturer's Model Name 1
    (0008,1140) SQ Referenced Image Sequence
    Item:
    > (0008,1150) UI =CT Image Storage # 26 Referenced SOP Class UID 1
    > (0008,1155) UI [1.2.840.113704.1.111.2988.1437251888.1] # 38 Referenced SOP Instance UID 1


    (0010,0010) PN [JANE WANJIKU] # 12 Patient's Name 1
    (0010,0020) LO [INSTITUTION1-11029209] # 22 Patient ID 1
    (0010,0030) DA [] # 0 Patient's Birth Date 1
    (0010,0040) CS [F] # 2 Patient's Sex 1
    (0010,1010) AS [049Y] # 4 Patient's Age 1
    (0018,0010) LO [CONTRAST] # 8 Contrast/Bolus Agent 1
    (0018,0022) CS [HELIX] # 6 Scan Options 1-N
    (0018,0050) DS [5] # 2 Slice Thickness 1
    (0018,0060) DS [120] # 4 KVP 1
    (0018,0090) DS [500] # 4 Data Collection Diameter 1
    (0018,1016) LO [Philips] # 8 Secondary Capture Device Manufacturers 1
    (0018,1018) LO [MxView] # 6 Secondary Capture Device Manufacturer's Model Name 1
    (0018,1020) LO [2.2.6] # 6 Software Version(s) 1-N
    (0018,1030) LO [PRE/POST BRAIN/Head] # 20 Protocol Name 1
    (0018,1100) DS [214] # 4 Reconstruction Diameter 1
    (0018,1120) DS [0] # 2 Gantry/Detector Tilt 1
    (0018,1130) DS [143] # 4 Table Height 1
    (0018,1140) CS [CW] # 2 Rotation Direction 1
    (0018,1151) IS [180] # 4 X-Ray Tube Current 1
    (0018,1152) IS [415] # 4 Exposure 1
    (0018,1160) SH [UC] # 2 Filter Type 1
    (0018,1210) SH [UC] # 2 Convolution Kernel 1-N
    (0018,5100) CS [HFS] # 4 Patient Position 1
    (0020,000d) UI [1.2.840.113704.1.111.2604.1437251878.16] # 40 Study Instance UID 1
    (0020,000e) UI [1.2.840.113704.7.1.1.7416.1437252308.1] # 38 Series Instance UID 1
    (0020,0010) SH [13809] # 6 Study ID 1
    (0020,0011) IS [80216] # 6 Series Number 1
    (0020,0012) IS [] # 0 Acquisition Number 1
    (0020,0013) IS [38] # 2 Instance Number 1
    (0020,0020) CS [] # 0 Patient Orientation 2
    (0020,0032) DS [-95.0666562\-19.3484535\190.00015] # 34 Image Position (Patient) 3
    (0020,0037) DS [0.994521895\0.104528463\0\-0.104528463\0.994521895\0] # 52 Image Orientation (Patient) 6
    (0020,0052) UI [1.2.840.113704.1.111.4676.1437250960.5] # 38 Frame of Reference UID 1
    (0020,1040) LO [] # 0 Position Reference Indicator 1
    (0020,1041) DS [129.5] # 6 Slice Location 1
    (0020,4000) LT [POST] # 4 Image Comments 1
    (0028,0002) US 1 # 2 Samples per Pixel 1
    (0028,0004) CS [MONOCHROME2] # 12 Photometric Interpretation 1
    (0028,0010) US 512 # 2 Rows 1
    (0028,0011) US 512 # 2 Columns 1
    (0028,0030) DS [0.417152408\0.417152408] # 24 Pixel Spacing 2
    (0028,0100) US 16 # 2 Bits Allocated 1
    (0028,0101) US 12 # 2 Bits Stored 1
    (0028,0102) US 11 # 2 High Bit 1
    (0028,0103) US 0 # 2 Pixel Representation 1
    (0028,1050) DS [40\40] # 6 Window Center 1-N
    (0028,1051) DS [80\80] # 6 Window Width 1-N
    (0028,1052) DS [-1024] # 6 Rescale Intercept 1
    (0028,1053) DS [1] # 2 Rescale Slope 1
    (0028,2110) CS [01] # 2 Lossy Image Compression 1
    (0040,0253) SH [1380988] # 8 Performed Procedure Step ID 1
    (00e1,0010) LO [ELSCINT1] # 8 Private Tag 1-N
    (00e1,1014) UN (00e1,1014) Private Tag # 2 Private Tag 1-N
    (00e1,1022) UN (00e1,1022) Private Tag # 4 Private Tag 1-N
    (00e1,1023) UN (00e1,1023) Private Tag # 4 Private Tag 1-N
    (07a1,0010) LO [ELSCINT1] # 8 Private Tag 1-N
    (07a1,1010) UN (07a1,1010) Private Tag # 4 Private Tag 1-N
    (7fe0,0010) OW (no value available) # 0 Pixel Data 1





    015-07-21 07:14:50,663 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT COUNT(*) FROM WorkQueue WHERE WorkQueue.StudyStorageGUID = @WorkQueueStudyStorageGUID AND WorkQueue.WorkQueueTypeEnum = @WorkQueueWorkQueueTypeEnum AND EXISTS (SELECT * FROM WorkQueueUid WHERE WorkQueue.GUID = WorkQueueUid.WorkQueueGUID AND WorkQueueUid.SeriesInstanceUid = @WorkQueueUidSeriesInstanceUid AND WorkQueueUid.SopInstanceUid = @WorkQueueUidSopInstanceUid)
    2015-07-21 07:14:50,663 [DicomServer: 213.150.99.110 [30]] DEBUG - SELECT COUNT(*) FROM StudyIntegrityQueue WHERE StudyIntegrityQueue.StudyStorageGUID = @StudyIntegrityQueueStudyStorageGUID AND EXISTS (SELECT * FROM StudyIntegrityQueueUid WHERE StudyIntegrityQueue.GUID = StudyIntegrityQueueUid.StudyIntegrityQueueGUID AND StudyIntegrityQueueUid.SeriesInstanceUid = @StudyIntegrityQueueUidSeriesInstanceUid AND StudyIntegrityQueueUid.SopInstanceUid = @StudyIntegrityQueueUidSopInstanceUid)
    2015-07-21 07:14:50,663 [DicomServer: 213.150.99.110 [30]] DEBUG - Executing stored procedure: InsertWorkQueue
    2015-07-21 07:14:50,663 [DicomServer: 213.150.99.110 [30]] INFO - Received SOP Instance 1.2.840.113704.7.1.1.7416.1437252308.89 from CONQ_TMATERHB to TEST_KE (StudyUid:1.2.840.113704.1.111.2604.1437251878.16)
    2015-07-21 07:14:50,679 [DicomServer: 213.150.99.110 [30]] DEBUG - Send MetaInfo:
    (0000,0002) UI =CT Image Storage # 26 Affected SOP Class UID 1
    (0000,0100) US 32769 # 2 Command Field 1
    (0000,0120) US 6401 # 2 Message ID Being Responded To 1
    (0000,0800) US 257 # 2 Data Set Type 1
    (0000,0900) US 0 # 2 Status 1
    (0000,1000) UI [1.2.840.113704.7.1.1.7416.1437252308.89] # 40 Affected SOP Instance UID 1


    2015-07-21 07:14:50,679 [DicomServer: 213.150.99.110 [30]] DEBUG - Send DataSet:


    2015-07-21 07:14:50,694 [DicomServer: 213.150.99.110 [30]] INFO - Received association release request from CONQ_TMATERHB to TEST_KE.
    2015-07-21 07:14:50,757 [DicomServer: 213.150.99.110 [30]] INFO - <Statistics Type="TransmissionStatistics" Context="Transmission" Description="DICOM association from CONQ_TMATERHB [213.150.99.110:61068] to TEST_KE [41.242.1.245:4050]" MessageRate="4.53 msg/s" Speed="247.11 KB/s" IncomingBytes="2.13 MB" OutgoingBytes="5.23 KB" OutgoingMessages="40 msg" IncomingMessages="40 msg" />

  • Hi Marcel,


    I have noticed that the reason it seems to work is because I was sending to Pacsone and not CC. Sending to CC still results in unexpected compression as explained in previous posts.


    Thanks.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!