image.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:7k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: image.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/11/05 15:27:41  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef UTIL_IMAGE___IMAGE__HPP
  10. #define UTIL_IMAGE___IMAGE__HPP
  11. /*  $Id: image.hpp,v 1000.1 2003/11/05 15:27:41 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CImage -- interface for manipulating image data
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. BEGIN_NCBI_SCOPE
  43. //
  44. // class CImage defines an interface for manipulating image data.
  45. //
  46. // CImage holds a single image, defined by a data strip that represents the
  47. // pixels of the image.  This class holds the image dimensions (width x height)
  48. // as well as the image's "depth" - that is, the number of channels per pixel.
  49. // In this notion, a single channel corresponds to a single color plane.  Thus,
  50. // an image with three channels is an RGB image, and the data is a set of
  51. // interleaved RGB values such that the pixel at (0, 0) of the image is the
  52. // first in the strip, and the first three bytes of the strip are the valus of
  53. // the red, gren, and blue channels repsectively.
  54. //
  55. // CImage currently supports RGB and RGBA images (that is, images with depth =
  56. // 3 and depth = 4).
  57. //
  58. // There are wto mechanisms to access the image data - you can access the data
  59. // as a raw strip in which you will need to dereference the RGB channels
  60. // yourself, or you can access a single pixel using operator(), supplying x and
  61. // y coordinates.  The returned value is an unsigned char* that can be indexed
  62. // using the enumerated offsets eRed, eGreen, eBlue, and eAlpha.
  63. //
  64. class NCBI_XIMAGE_EXPORT CImage : public CObject
  65. {
  66. public:
  67.     // typedef for pixel type
  68.     // this is an unsigned char*; it represents a 3- or 4-member data chunk
  69.     // ordered as red/green/blue(/alpha) that can be indexed with the enum
  70.     // below.
  71.     typedef unsigned char*       TPixel;
  72.     typedef const unsigned char* TConstPixel;
  73.     // typedef for our image strip
  74.     typedef vector<unsigned char> TImageStrip;
  75.     // enum for image channels (= offset from pixel position)
  76.     enum EChannel {
  77.         eRed   = 0,
  78.         eGreen = 1,
  79.         eBlue  = 2,
  80.         eAlpha = 3
  81.     };
  82.     // constructors
  83.     CImage(void);
  84.     CImage(size_t width, size_t height, size_t depth = 3);
  85.     // access the image strip data.  This is a set of interleaved RGB or RGBA
  86.     // values in row-major order.
  87.     const unsigned char* GetData(void) const;
  88.     unsigned char*       SetData(void);
  89.     // access a single pixel in the data string, indexed by x and y position.
  90.     TConstPixel operator() (size_t x, size_t y) const;
  91.     TPixel      operator() (size_t x, size_t y);
  92.     // access the dimensions of this image
  93.     size_t GetWidth(void) const    { return m_Width; }
  94.     size_t GetHeight(void) const   { return m_Height; }
  95.     // access the aspect ratio for the image
  96.     // This is just width / height
  97.     float  GetAspectRatio(void) const;
  98.     // access the depth (= number of channels) for this image.
  99.     // This will be either 3 or 4 (3 = 3 components per pixel, or 24-bit; 4 = 4
  100.     // components per pixel, or 32-bit)
  101.     size_t GetDepth(void) const   { return m_Depth; }
  102.     // set the depth for an image.  NOTE: this will create an empty alpha
  103.     // channel or drop the existing one, as required!
  104.     void SetDepth(size_t depth);
  105.     // set one of the 3 (or 4) channels of the image to a given value
  106.     void SetChannel(size_t channel, unsigned char val);
  107.     void SetRed  (unsigned char val);
  108.     void SetGreen(unsigned char val);
  109.     void SetBlue (unsigned char val);
  110.     void SetAlpha(unsigned char val, bool add_channel = false);
  111.     // get a subset of this image
  112.     CImage* GetSubImage(size_t x, size_t y, size_t w, size_t h) const;
  113.     // initialize this image
  114.     void Init(size_t width, size_t height, size_t depth);
  115.     // flip the image top -> bottom.  This is necessary because some image
  116.     // formats are explicitly inverted, and many (most? all?) frane buffers are
  117.     // flipped as well.
  118.     void Flip(void);
  119. private:
  120.     size_t m_Width;
  121.     size_t m_Height;
  122.     size_t m_Depth;
  123.     TImageStrip m_Data;
  124.     // forbid copying
  125.     CImage(const CImage&);
  126.     CImage& operator=(const CImage&);
  127. };
  128. //
  129. // index into our data strip
  130. //
  131. inline
  132. CImage::TConstPixel CImage::operator() (size_t x, size_t y) const
  133. {
  134.     _ASSERT(x < m_Height);
  135.     _ASSERT(y < m_Width);
  136.     return &(m_Data[ (x * m_Width + y) * m_Depth ]);
  137. }
  138. inline
  139. CImage::TPixel CImage::operator() (size_t x, size_t y)
  140. {
  141.     _ASSERT(x < m_Height);
  142.     _ASSERT(y < m_Width);
  143.     return &(m_Data[ (x * m_Width + y) * m_Depth ]);
  144. }
  145. //
  146. // set the red channel to a given value.  The red channel is channel 0.
  147. //
  148. inline
  149. void CImage::SetRed(unsigned char val)
  150. {
  151.     SetChannel(eRed, val);
  152. }
  153. //
  154. // set the green channel to a given value.  The green channel is channel 1.
  155. //
  156. inline
  157. void CImage::SetGreen(unsigned char val)
  158. {
  159.     SetChannel(eAlpha, val);
  160. }
  161. //
  162. // set the blue channel to a given value.  The blue channel is channel 2.
  163. //
  164. inline
  165. void CImage::SetBlue(unsigned char val)
  166. {
  167.     SetChannel(eBlue, val);
  168. }
  169. END_NCBI_SCOPE
  170. /*
  171.  * ===========================================================================
  172.  * $Log: image.hpp,v $
  173.  * Revision 1000.1  2003/11/05 15:27:41  gouriano
  174.  * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.6
  175.  *
  176.  * Revision 1.6  2003/11/03 15:15:08  dicuccio
  177.  * Fixed indexing of images - operator() now returns (row, column)
  178.  *
  179.  * Revision 1.5  2003/08/27 16:44:32  ivanov
  180.  * Changed class export specifier to NCBI_XIMAGE_EXPORT
  181.  *
  182.  * Revision 1.4  2003/06/12 19:44:39  dicuccio
  183.  * Added function to flip an image along the y-axis
  184.  *
  185.  * Revision 1.3  2003/06/09 19:17:32  dicuccio
  186.  * Added GetAspectRatio()
  187.  *
  188.  * Revision 1.2  2003/06/03 20:04:24  dicuccio
  189.  * Added export specifiers
  190.  *
  191.  * Revision 1.1  2003/06/03 15:17:41  dicuccio
  192.  * Initial revision of image library
  193.  *
  194.  * ===========================================================================
  195.  */
  196. #endif  // UTIL_IMAGE___IMAGE__HPP