aboutsummaryrefslogtreecommitdiff
path: root/externals/pix_opencv_hu_moments.h
diff options
context:
space:
mode:
authorN.N. <sevyves@users.sourceforge.net>2009-09-11 21:37:01 +0000
committerN.N. <sevyves@users.sourceforge.net>2009-09-11 21:37:01 +0000
commit55b27d7d386d3da918631f7d08b6a2ebf8c0f376 (patch)
tree9e4f17abba2f14aed5a87c3bb90267328119da4f /externals/pix_opencv_hu_moments.h
parent9a801781e76403c46adc308aa93b50d1a7562715 (diff)
oops comitted in the wrong place
svn path=/trunk/; revision=12312
Diffstat (limited to 'externals/pix_opencv_hu_moments.h')
-rwxr-xr-xexternals/pix_opencv_hu_moments.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/externals/pix_opencv_hu_moments.h b/externals/pix_opencv_hu_moments.h
deleted file mode 100755
index 20c031ce..00000000
--- a/externals/pix_opencv_hu_moments.h
+++ /dev/null
@@ -1,86 +0,0 @@
-/*-----------------------------------------------------------------
-LOG
- GEM - Graphics Environment for Multimedia
-
- Hu moments calculator object
-
- Copyright (c) 1997-1999 Mark Danks. mark@danks.org
- Copyright (c) Günther Geiger. geiger@epy.co.at
- Copyright (c) 2001-2002 IOhannes m zmoelnig. forum::für::umläute. IEM. zmoelnig@iem.kug.ac.at
- Copyright (c) 2002 James Tittle & Chris Clepper
- For information on usage and redistribution, and for a DISCLAIMER OF ALL
- WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
-
------------------------------------------------------------------*/
-
-#ifndef INCLUDE_PIX_OPENCV_HU_MOMENTS_H_
-#define INCLUDE_PIX_OPENCV_HU_MOMENTS_H_
-
-#include "Base/GemPixObj.h"
-
-#ifndef _EiC
-#include "cv.h"
-#endif
-
-/*-----------------------------------------------------------------
--------------------------------------------------------------------
-CLASS
- pix_opencv_hu_moments
-
- Hu moments calculator object
-
-KEYWORDS
- pix
-
-DESCRIPTION
-
------------------------------------------------------------------*/
-class GEM_EXTERN pix_opencv_hu_moments : public GemPixObj
-{
- CPPEXTERN_HEADER(pix_opencv_hu_moments, GemPixObj)
-
- public:
-
- //////////
- // Constructor
- pix_opencv_hu_moments();
-
- protected:
-
- //////////
- // Destructor
- virtual ~pix_opencv_hu_moments();
-
- //////////
- // Do the processing
- virtual void processRGBAImage(imageStruct &image);
- virtual void processRGBImage(imageStruct &image);
- virtual void processYUVImage(imageStruct &image);
- virtual void processGrayImage(imageStruct &image);
-
- //////////
- // Set the new edge threshold
- void floatBinaryMess(float binary);
-
- // to detect changes in the image size
- int comp_xsize;
- int comp_ysize;
-
- int x_binary;
- t_outlet *m_dataout;
- t_atom rlist[7];
-
- private:
-
- //////////
- // Static member functions
- static void floatBinaryMessCallback(void *data, t_floatarg binary);
-
- /////////
- // IplImage needed
- IplImage *rgba, *rgb, *gray;
- CvMoments x_moments;
- CvHuMoments x_humoments;
-};
-
-#endif // for header file