]> Creatis software - gdcm.git/commitdiff
Doxygen : forget to commit theese ones
authorjpr <jpr>
Mon, 17 Sep 2007 12:18:25 +0000 (12:18 +0000)
committerjpr <jpr>
Mon, 17 Sep 2007 12:18:25 +0000 (12:18 +0000)
src/gdcmPixelReadConvert.cxx
src/gdcmPixelReadConvert.h

index b75ecb9a8308707b63049a81299e0776ebcda228..c776743a7560f13ba1189cbc141fbc9cfe013c12 100644 (file)
@@ -3,8 +3,8 @@
   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
@@ -70,7 +70,7 @@ PixelReadConvert::~PixelReadConvert()
 // 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()
 {
@@ -208,7 +208,7 @@ void PixelReadConvert::GrabInformationsFromFile( File *file,
       // [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
@@ -871,7 +871,7 @@ void PixelReadConvert::BuildLUTRGBA()
 }
 
 /**
- * \brief Swap the bytes, according to \ref SwapCode.
+ * \brief Swap the bytes, according to SwapCode.
  */
 void PixelReadConvert::ConvertSwapZone()
 {
@@ -1379,7 +1379,7 @@ void PixelReadConvert::ComputeRawAndRGBSizes()
    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;
index 36b0bb73ab438ef66c6845cc8b3fd6c29a7664d3..62856a86bddd46caf1d06381b5ceae3621e77acb 100644 (file)
@@ -3,8 +3,8 @@
   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
@@ -77,11 +77,11 @@ private:
    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 );
 
@@ -102,7 +102,7 @@ private:
    void CallStartMethod();
    void CallProgressMethod();
    void CallEndMethod();
-   
+
 // Variables
 /**
  * \brief Pixel data represented as RGB after LUT color interpretation.
@@ -117,7 +117,7 @@ private:
    /// 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;