DCMTK
Version 3.6.3
OFFIS DICOM Toolkit
|
abstract codec class for JPEG-LS decoders. More...
Public Member Functions | |
DJLSDecoderBase () | |
default constructor | |
virtual | ~DJLSDecoderBase () |
destructor | |
virtual OFCondition | decode (const DcmRepresentationParameter *fromRepParam, DcmPixelSequence *pixSeq, DcmPolymorphOBOW &uncompressedPixelData, const DcmCodecParameter *cp, const DcmStack &objStack) const |
decompresses the given pixel sequence and stores the result in the given uncompressedPixelData element. More... | |
virtual OFCondition | decodeFrame (const DcmRepresentationParameter *fromParam, DcmPixelSequence *fromPixSeq, const DcmCodecParameter *cp, DcmItem *dataset, Uint32 frameNo, Uint32 &startFragment, void *buffer, Uint32 bufSize, OFString &decompressedColorModel) const |
decompresses a single frame from the given pixel sequence and stores the result in the given buffer. More... | |
virtual OFCondition | encode (const Uint16 *pixelData, const Uint32 length, const DcmRepresentationParameter *toRepParam, DcmPixelSequence *&pixSeq, const DcmCodecParameter *cp, DcmStack &objStack) const |
compresses the given uncompressed DICOM image and stores the result in the given pixSeq element. More... | |
virtual OFCondition | encode (const E_TransferSyntax fromRepType, const DcmRepresentationParameter *fromRepParam, DcmPixelSequence *fromPixSeq, const DcmRepresentationParameter *toRepParam, DcmPixelSequence *&toPixSeq, const DcmCodecParameter *cp, DcmStack &objStack) const |
transcodes (re-compresses) the given compressed DICOM image and stores the result in the given toPixSeq element. More... | |
virtual OFBool | canChangeCoding (const E_TransferSyntax oldRepType, const E_TransferSyntax newRepType) const |
checks if this codec is able to convert from the given current transfer syntax to the given new transfer syntax More... | |
virtual OFCondition | determineDecompressedColorModel (const DcmRepresentationParameter *fromParam, DcmPixelSequence *fromPixSeq, const DcmCodecParameter *cp, DcmItem *dataset, OFString &decompressedColorModel) const |
determine color model of the decompressed image More... | |
![]() | |
DcmCodec () | |
default constructor | |
virtual | ~DcmCodec () |
destructor | |
Private Member Functions | |
virtual E_TransferSyntax | supportedTransferSyntax () const =0 |
returns the transfer syntax that this particular codec is able to Decode More... | |
Static Private Member Functions | |
static OFCondition | decodeFrame (DcmPixelSequence *fromPixSeq, const DJLSCodecParameter *cp, DcmItem *dataset, Uint32 frameNo, Uint32 &startFragment, void *buffer, Uint32 bufSize, Sint32 imageFrames, Uint16 imageColumns, Uint16 imageRows, Uint16 imageSamplesPerPixel, Uint16 bytesPerSample) |
decompresses a single frame from the given pixel sequence and stores the result in the given buffer. More... | |
static Uint16 | determinePlanarConfiguration (const OFString &sopClassUID, const OFString &photometricInterpretation) |
determines if a given image requires color-by-plane planar configuration depending on SOP Class UID (DICOM IOD) and photometric interpretation. More... | |
static Uint32 | computeNumberOfFragments (Sint32 numberOfFrames, Uint32 currentFrame, Uint32 startItem, OFBool ignoreOffsetTable, DcmPixelSequence *pixSeq) |
computes the number of fragments (pixel items) that comprise the current frame in the compressed pixel sequence. More... | |
static OFBool | isJPEGLSStartOfImage (Uint8 *fragmentData) |
check whether the given buffer contains a JPEG-LS start-of-image code More... | |
static OFCondition | createPlanarConfiguration1Byte (Uint8 *imageFrame, Uint16 columns, Uint16 rows) |
converts an RGB or YBR frame with 8 bits/sample from color-by-pixel to color-by-plane planar configuration. More... | |
static OFCondition | createPlanarConfiguration1Word (Uint16 *imageFrame, Uint16 columns, Uint16 rows) |
converts an RGB or YBR frame with 16 bits/sample from color-by-pixel to color-by-plane planar configuration. More... | |
static OFCondition | createPlanarConfiguration0Byte (Uint8 *imageFrame, Uint16 columns, Uint16 rows) |
converts an RGB or YBR frame with 8 bits/sample from color-by-plane to color-by-pixel planar configuration. More... | |
static OFCondition | createPlanarConfiguration0Word (Uint16 *imageFrame, Uint16 columns, Uint16 rows) |
converts an RGB or YBR frame with 16 bits/sample from color-by-plane to color-by-pixel planar configuration. More... | |
Additional Inherited Members | |
![]() | |
static OFCondition | insertStringIfMissing (DcmItem *dataset, const DcmTagKey &tag, const char *val) |
helper function that inserts a string attribute with a given value into a dataset if missing in the dataset. More... | |
static OFCondition | convertToSecondaryCapture (DcmItem *dataset) |
helper function that converts a dataset containing a DICOM image into a valid (standard extended) Secondary Capture object by inserting all attributes that are type 1/2 in Secondary Capture and missing in the source dataset. More... | |
static OFCondition | newInstance (DcmItem *dataset, const char *purposeOfReferenceCodingScheme=NULL, const char *purposeOfReferenceCodeValue=NULL, const char *purposeOfReferenceCodeMeaning=NULL) |
create new SOP instance UID and Source Image Sequence referencing the old SOP instance (if present) More... | |
static OFCondition | updateImageType (DcmItem *dataset) |
set first value of Image Type to DERIVED. More... | |
static OFCondition | insertCodeSequence (DcmItem *dataset, const DcmTagKey &tagKey, const char *codingSchemeDesignator, const char *codeValue, const char *codeMeaning) |
insert code sequence into the given dataset More... | |
static OFCondition | determineStartFragment (Uint32 frameNo, Sint32 numberOfFrames, DcmPixelSequence *fromPixSeq, Uint32 ¤tItem) |
determine the index number (starting with zero) of the compressed pixel data fragment corresponding to the given frame (also starting with zero) More... | |
abstract codec class for JPEG-LS decoders.
This abstract class contains most of the application logic needed for a dcmdata codec object that implements a JPEG-LS decoder. This class only supports decompression, it neither implements encoding nor transcoding.
|
virtual |
checks if this codec is able to convert from the given current transfer syntax to the given new transfer syntax
oldRepType | current transfer syntax |
newRepType | desired new transfer syntax |
Implements DcmCodec.
|
staticprivate |
computes the number of fragments (pixel items) that comprise the current frame in the compressed pixel sequence.
This method uses various approaches to compute the number of fragments for a frame, including a check of the offset table and checking the start of each fragment for JPEG SOI markers.
numberOfFrames | total number of frames of the DICOM object |
currentFrame | index of current frame (0..numberOfFrames-1) |
startItem | index of fragment (pixel item) the frame starts with |
ignoreOffsetTable | flag instructing the method to ignore the offset table even if present and presumably useful |
pixSeq | the compressed JPEG-LS pixel sequence |
|
staticprivate |
converts an RGB or YBR frame with 8 bits/sample from color-by-plane to color-by-pixel planar configuration.
imageFrame | pointer to image frame, must contain at least 3*columns*rows bytes of pixel data. |
columns | columns |
rows | rows |
|
staticprivate |
converts an RGB or YBR frame with 16 bits/sample from color-by-plane to color-by-pixel planar configuration.
imageFrame | pointer to image frame, must contain at least 3*columns*rows words of pixel data. |
columns | columns |
rows | rows |
|
staticprivate |
converts an RGB or YBR frame with 8 bits/sample from color-by-pixel to color-by-plane planar configuration.
imageFrame | pointer to image frame, must contain at least 3*columns*rows bytes of pixel data. |
columns | columns |
rows | rows |
|
staticprivate |
converts an RGB or YBR frame with 16 bits/sample from color-by-pixel to color-by-plane planar configuration.
imageFrame | pointer to image frame, must contain at least 3*columns*rows words of pixel data. |
columns | columns |
rows | rows |
|
virtual |
decompresses the given pixel sequence and stores the result in the given uncompressedPixelData element.
fromRepParam | current representation parameter of compressed data, may be NULL |
pixSeq | compressed pixel sequence |
uncompressedPixelData | uncompressed pixel data stored in this element |
cp | codec parameters for this codec |
objStack | stack pointing to the location of the pixel data element in the current dataset. |
Implements DcmCodec.
|
virtual |
decompresses a single frame from the given pixel sequence and stores the result in the given buffer.
fromParam | representation parameter of current compressed representation, may be NULL. |
fromPixSeq | compressed pixel sequence |
cp | codec parameters for this codec |
dataset | pointer to dataset in which pixel data element is contained |
frameNo | number of frame, starting with 0 for the first frame |
startFragment | index of the compressed fragment that contains all or the first part of the compressed bitstream for the given frameNo. Upon successful return this parameter is updated to contain the index of the first compressed fragment of the next frame. When unknown, zero should be passed. In this case the decompression algorithm will try to determine the index by itself, which will always work if frames are decompressed in increasing order from first to last, but may fail if frames are decompressed in random order, multiple fragments per frame and multiple frames are present in the dataset, and the offset table is empty. |
buffer | pointer to buffer where frame is to be stored |
bufSize | size of buffer in bytes |
decompressedColorModel | upon successful return, the color model of the decompressed image (which may be different from the one used in the compressed images) is returned in this parameter. |
Implements DcmCodec.
|
staticprivate |
decompresses a single frame from the given pixel sequence and stores the result in the given buffer.
fromPixSeq | compressed pixel sequence |
cp | codec parameters for this codec |
dataset | pointer to dataset in which pixel data element is contained |
frameNo | number of frame, starting with 0 for the first frame |
startFragment | index of the compressed fragment that contains all or the first part of the compressed bitstream for the given frameNo. Upon successful return this parameter is updated to contain the index of the first compressed fragment of the next frame. When unknown, zero should be passed. In this case the decompression algorithm will try to determine the index by itself, which will always work if frames are decompressed in increasing order from first to last, but may fail if frames are decompressed in random order, multiple fragments per frame and multiple frames are present in the dataset, and the offset table is empty. |
buffer | pointer to buffer where frame is to be stored |
bufSize | size of buffer in bytes |
imageFrames | number of frames in this image |
imageColumns | number of columns for each frame |
imageRows | number of rows for each frame |
imageSamplesPerPixel | number of samples per pixel |
bytesPerSample | number of bytes per sample |
|
virtual |
determine color model of the decompressed image
fromParam | representation parameter of current compressed representation, may be NULL |
fromPixSeq | compressed pixel sequence |
cp | codec parameters for this codec |
dataset | pointer to dataset in which pixel data element is contained |
dataset | pointer to DICOM dataset in which this pixel data object is located. Used to access photometric interpretation. |
decompressedColorModel | upon successful return, the color model of the decompressed image (which may be different from the one used in the compressed images) is returned in this parameter |
Implements DcmCodec.
|
staticprivate |
determines if a given image requires color-by-plane planar configuration depending on SOP Class UID (DICOM IOD) and photometric interpretation.
All SOP classes defined in the 2003 edition of the DICOM standard or earlier are handled correctly.
sopClassUID | SOP Class UID |
photometricInterpretation | decompressed photometric interpretation |
|
virtual |
compresses the given uncompressed DICOM image and stores the result in the given pixSeq element.
pixelData | pointer to the uncompressed image data in OW format and local byte order |
length | of the pixel data field in bytes |
toRepParam | representation parameter describing the desired compressed representation (e.g. JPEG quality) |
pixSeq | compressed pixel sequence (pointer to new DcmPixelSequence object allocated on heap) returned in this parameter upon success. |
cp | codec parameters for this codec |
objStack | stack pointing to the location of the pixel data element in the current dataset. |
Implements DcmCodec.
|
virtual |
transcodes (re-compresses) the given compressed DICOM image and stores the result in the given toPixSeq element.
fromRepType | current transfer syntax of the compressed image |
fromRepParam | current representation parameter of compressed data, may be NULL |
fromPixSeq | compressed pixel sequence |
toRepParam | representation parameter describing the desired new compressed representation (e.g. JPEG quality) |
toPixSeq | compressed pixel sequence (pointer to new DcmPixelSequence object allocated on heap) returned in this parameter upon success. |
cp | codec parameters for this codec |
objStack | stack pointing to the location of the pixel data element in the current dataset. |
Implements DcmCodec.
|
staticprivate |
check whether the given buffer contains a JPEG-LS start-of-image code
fragmentData | pointer to 4 or more bytes of JPEG-LS data |
|
privatepure virtual |
returns the transfer syntax that this particular codec is able to Decode
Implemented in DJLSNearLosslessDecoder, and DJLSLosslessDecoder.