📄 gdcmrleframe.h
字号:
/*=========================================================================
Program: gdcm
Module: $RCSfile: gdcmRLEFrame.h,v $
Language: C++
Date: $Date: 2006-07-10 20:08:21 $
Version: $Revision: 1.5 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef GDCMRLEFRAME_H
#define GDCMRLEFRAME_H
#include "gdcmCommon.h"
#include <iostream>
#include <fstream>
namespace gdcm
{
/**
* \brief Utility class for summerizing the informations of a SINGLE RLE
* frame of an "Encapsulated RLE Compressed Image" (refer to
* PS 3.5-2003 annex G).
* This information is a mix of:
* - the RLE Header (see PS 3.5-2003 section G5) and
* - the lengths of each RLE segment [ which can be decuded from
* both the above RLE Header and the itemlength of the frame).
*
* Each instance of this class (they can be as many instances for
* a given Document as they are frames and they are collected in
* a \ref RLEFramesInfo ) describes :
* - the total number of segments (up to 15),
* - the offsets of each segment of the frame,
* - the (corresponding) lengths of each segment of the frame.
*/
class GDCM_EXPORT RLEFrame
{
friend class File;
friend class RLEFramesInfo;
private:
RLEFrame() { NumberOfFragments = 0; }
void Print( std::ostream &os = std::cout, std::string const &indent = "" );
void SetNumberOfFragments(unsigned int number)
{ NumberOfFragments = number; }
unsigned int GetNumberOfFragments() { return NumberOfFragments; }
void SetOffset(unsigned int id, long offset);
long GetOffset(unsigned int id);
void SetLength(unsigned int id, long length);
long GetLength(unsigned int id);
uint8_t *ReadAndDecompressRLEFrame( uint8_t *subRaw,long rawSegmentSize,
std::ifstream *fp );
bool ReadAndDecompressRLEFragment( uint8_t *subRaw, long fragmentSize,
long rawSegmentSize, std::ifstream *fp );
unsigned int NumberOfFragments;
long Offset[15];
long Length[15];
};
} // end namespace gdcm
//-----------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -