vee_image_blender.h

Go to the documentation of this file.
00001 /* -*- C++ -*- */
00002 
00003 /* COPYRIGHT
00004  *
00005  * This file is part of the Visual Effects Engine - VEE
00006  *
00007  * Read the "VEE-LICENSE" file for the license.
00008  *
00009  * Authors & Copyright:   
00010  *
00011  * Tommi Ilmonen, Tuukka Heikura, Marko Myllymaa and 
00012  * Janne Kontkanen 2001-2004
00013  *
00014  * Additional copyrights: Tekes 2003-2004
00015  *
00016  * firstname.lastname@hut.fi
00017  *
00018  */
00019 
00020 #ifndef _VEE_IMAGE_BLENDER_H_
00021 #define _VEE_IMAGE_BLENDER_H_
00022 
00023 #include <vector>
00024 #include <di_types.h>
00025 
00026 class QImage;
00027 
00028 class VEE_ImageBlender
00029 {
00030 public:
00031   VEE_ImageBlender();
00032   ~VEE_ImageBlender();
00033 
00034   void clear();
00035 
00036   void divide(int d);
00037 
00038   bool add(QImage *image);
00039 
00040   bool store(QImage *image);
00041 
00042 protected:
00043 
00044   std::vector<ushort> m_image;
00045 };
00046 
00047 #endif

Generated on Mon Mar 12 21:09:00 2007 for VEE - The Visual Effects Engine by  doxygen 1.4.6