Program: gdcm
Module: $RCSfile: gdcmRLEFramesInfo.cxx,v $
Language: C++
- Date: $Date: 2005/02/02 10:16:02 $
- Version: $Revision: 1.14 $
+ Date: $Date: 2005/02/11 17:01:46 $
+ Version: $Revision: 1.15 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
* \brief We assume Raw contains the decoded RLE pixels but as
* 8 bits per pixel. We convert those pixels to 16 bits
* per pixel.
- * @param raw raw
+ * @param raw raw
* @param xSize x Size
* @param ySize y Size
* @param numberOfFrames number of frames
}
delete[] copyRaw;
- /// \todo check that operator new [] didn't fail, and sometimes return false
-
return true;
}
Program: gdcm
Module: $RCSfile: gdcmRLEFramesInfo.h,v $
Language: C++
- Date: $Date: 2005/02/06 14:43:28 $
- Version: $Revision: 1.18 $
+ Date: $Date: 2005/02/11 16:58:49 $
+ Version: $Revision: 1.19 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
bool DecompressRLEFile( std::ifstream *fp, uint8_t *subRaw, int xSize,
int ySize, int zSize, int bitsAllocated );
bool ConvertRLE16BitsFromRLE8Bits( uint8_t *subRaw, int xSize, int ySize,
- int NumberOfFrames );
+ int numberOfFrames );
void AddFrame(RLEFrame *frame);
Program: gdcm
Module: $RCSfile: gdcmSerieHelper.h,v $
Language: C++
- Date: $Date: 2005/02/06 14:43:28 $
- Version: $Revision: 1.6 $
+ Date: $Date: 2005/02/11 17:01:46 $
+ Version: $Revision: 1.7 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// \todo should return bool or throw error ?
void AddFileName(std::string const &filename);
void SetDirectory(std::string const &dir, bool recursive=false);
- void OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList);
+ void OrderGdcmFileList(GdcmFileList *coherentGdcmFileList);
/// \brief Gets the FIRST *coherent* File List.
/// Deprecated; kept not to break the API
GdcmFileList *GetFirstCoherentFileList();
GdcmFileList *GetNextCoherentFileList();
- GdcmFileList *GetCoherentFileList(std::string SerieUID);
+ GdcmFileList *GetCoherentFileList(std::string serieUID);
private:
- bool ImagePositionPatientOrdering(GdcmFileList *CoherentGdcmFileList);
- bool ImageNumberOrdering(GdcmFileList *CoherentGdcmFileList);
- bool FileNameOrdering(GdcmFileList *CoherentGdcmFileList);
+ bool ImagePositionPatientOrdering(GdcmFileList *coherentGdcmFileList);
+ bool ImageNumberOrdering(GdcmFileList *coherentGdcmFileList);
+ bool FileNameOrdering(GdcmFileList *coherentGdcmFileList);
static bool ImageNumberLessThan(File *file1, File *file2);
static bool FileNameLessThan(File *file1, File *file2);