Program: gdcm
Module: $RCSfile: gdcmPixelReadConvert.cxx,v $
Language: C++
- Date: $Date: 2007/09/05 08:22:57 $
- Version: $Revision: 1.122 $
+ Date: $Date: 2007/09/17 12:18:25 $
+ Version: $Revision: 1.123 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// Public
/**
* \brief Predicate to know whether the image[s] (once Raw) is RGB.
- * \note See comments of \ref ConvertHandleColor
+ * \note See comments of ConvertHandleColor
*/
bool PixelReadConvert::IsRawRGB()
{
// [Bin|Val]Entry occurence migth have been hindered (read simply NOT
// loaded). Hence, we first try to obtain the LUTs data from the file
// and when this fails we read the LUTs data directly from disk.
- // \TODO Reading a [Bin|Val]Entry directly from disk is a kludge.
+ // \todo Reading a [Bin|Val]Entry directly from disk is a kludge.
// We should NOT bypass the [Bin|Val]Entry class. Instead
// an access to an UNLOADED content of a [Bin|Val]Entry occurence
// (e.g. DataEntry::GetBinArea()) should force disk access from
}
/**
- * \brief Swap the bytes, according to \ref SwapCode.
+ * \brief Swap the bytes, according to SwapCode.
*/
void PixelReadConvert::ConvertSwapZone()
{
int bitsAllocated = BitsAllocated;
// Number of "Bits Allocated" is fixed to 16 when it's 12, since
// in this case we will expand the image to 16 bits (see
- // \ref ReadAndDecompress12BitsTo16Bits() )
+ // ReadAndDecompress12BitsTo16Bits() )
if ( BitsAllocated == 12 )
{
bitsAllocated = 16;
Program: gdcm
Module: $RCSfile: gdcmPixelReadConvert.h,v $
Language: C++
- Date: $Date: 2007/08/22 16:14:04 $
- Version: $Revision: 1.32 $
+ Date: $Date: 2007/09/17 12:18:25 $
+ Version: $Revision: 1.33 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
void BuildLUTRGBA();
/// \brief Allow user to pass his own function to modify pixels
/// (e.g; mirror, upsidedown, ...) just after reading
- void SetUserFunction( VOID_FUNCTION_PUINT8_PFILE_POINTER userFunc )
+ void SetUserFunction( VOID_FUNCTION_PUINT8_PFILE_POINTER userFunc )
{ UserFunction = userFunc; }
// Use the fp:
- void ReadAndDecompress12BitsTo16Bits( std::ifstream *fp )
+ void ReadAndDecompress12BitsTo16Bits( std::ifstream *fp )
throw ( FormatError );
bool ReadAndDecompressJPEGFile( std::ifstream *fp );
void CallStartMethod();
void CallProgressMethod();
void CallEndMethod();
-
+
// Variables
/**
* \brief Pixel data represented as RGB after LUT color interpretation.
/// Size of Decompressed image.
size_t RawSize;
/// \brief Red/Green/Blue/Alpha LookUpTable build out of the
- /// Red/Green/Blue LUT descriptors (see \ref BuildLUTRGBA ).
+ /// Red/Green/Blue LUT descriptors (see BuildLUTRGBA ).
uint8_t *LutRGBA;
int LutItemNumber;
int LutItemSize;