File: pix_mean_color.h

package info (click to toggle)
gem 1%3A0.93.3-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 28,524 kB
  • sloc: cpp: 134,188; sh: 11,215; makefile: 2,853; ansic: 84
file content (48 lines) | stat: -rw-r--r-- 1,573 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2004 Tim Blechmann
// For information on usage and redistribution, and for a DISCLAIMER OF ALL
// WARRANTIES, see the file, "GEM.LICENSE.TERMS"  in this distribution.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// See file GEM.LICENSE.TERMS for further informations on licensing terms.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

#ifndef _PIX_MEAN_COLOR_H
#define _PIX_MEAN_COLOR_H

#include "Base/GemPixObj.h"

class GEM_EXTERN pix_mean_color : public GemPixObj
{
	CPPEXTERN_HEADER(pix_mean_color, GemPixObj);

 public:
	// constructor
	pix_mean_color(int argc, t_atom *argv);
	
 protected:
	// destructor
	virtual ~pix_mean_color();

	// processing routine
	virtual void processRGBImage(imageStruct &image);
	virtual void processRGBAImage(imageStruct &image);
	virtual void processGrayImage(imageStruct &image);
	virtual void processYUVImage(imageStruct &image);
	
	t_outlet * m_list;
};


#endif /* _PIX_MEAN_COLOR_H */