comparison Resources/Configuration.json @ 3958:596912ebab5f c-get

integration mainline->c-get
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 20 May 2020 17:03:24 +0200
parents 82e88ff003d7 c205f670098e
children d86bddb50972
comparison
equal deleted inserted replaced
3955:66879215cbf3 3958:596912ebab5f
545 "StorageCommitmentReportsSize" : 100, 545 "StorageCommitmentReportsSize" : 100,
546 546
547 // Whether Orthanc transcodes DICOM files to an uncompressed 547 // Whether Orthanc transcodes DICOM files to an uncompressed
548 // transfer syntax over the DICOM protocol, if the remote modality 548 // transfer syntax over the DICOM protocol, if the remote modality
549 // does not support compressed transfer syntaxes (new in Orthanc 1.7.0). 549 // does not support compressed transfer syntaxes (new in Orthanc 1.7.0).
550 "TranscodeDicomProtocol" : true 550 "TranscodeDicomProtocol" : true,
551
552 // If some plugin to decode/transcode DICOM instances is installed,
553 // this option specifies whether the built-in decoder/transcoder of
554 // Orthanc (that uses DCMTK) is applied before or after the plugins,
555 // or is not applied at all (new in Orthanc 1.7.0). The allowed
556 // values for this option are "After" (default value, corresponding
557 // to the behavior of Orthanc <= 1.6.1), "Before", or "Disabled".
558 "BuiltinDecoderTranscoderOrder" : "After",
559
560 // If this option is set, Orthanc will transparently transcode any
561 // incoming DICOM instance to the given transfer syntax before
562 // storing it into its database. Beware that this might result in
563 // high CPU usage (if transcoding to some compressed transfer
564 // syntax), or in higher disk consumption (if transcoding to an
565 // uncompressed syntax). Also, beware that transcoding to a transfer
566 // syntax with lossy compression (notably JPEG) will change the
567 // "SOPInstanceUID" DICOM tag, and thus the Orthanc identifier at
568 // the instance level, which might break external workflow.
569 /**
570 "IngestTranscoding" : "1.2.840.10008.1.2",
571 **/
572
573 // The compression level that is used when transcoding to one of the
574 // lossy/JPEG transfer syntaxes (integer between 1 and 100).
575 "DicomLossyTranscodingQuality" : 90
551 } 576 }