Main Page   Modules   Class Hierarchy   Compound List   File List   Compound Members   Related Pages  

Basic.h

00001 /*
00002 OpenMorpho Library - Mathematical Morphology (Image processing) Library
00003 Copyright (C) 2000  Laurent Najman
00004 
00005 This program is free software; you can redistribute it and/or
00006 modify it under the terms of the GNU General Public License
00007 as published by the Free Software Foundation; either version 2
00008 of the License, or (at your option) any later version.
00009 
00010 This program is distributed in the hope that it will be useful,
00011 but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 GNU General Public License for more details.
00014 
00015 You should have received a copy of the GNU General Public License
00016 along with this program; if not, write to the Free Software
00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00018 
00019 You can contact the author at
00020         mailto:laurent@najman.org
00021 and download the latest version at
00022         http://www.laurentnajman.org
00023 */
00024 
00025 // Basic.h: interface for the CBasic class.
00026 //
00028 
00029 #if !defined(AFX_BASIC_H__8B9B0E81_8BC5_11D4_B181_C2959B5E2449__INCLUDED_)
00030 #define AFX_BASIC_H__8B9B0E81_8BC5_11D4_B181_C2959B5E2449__INCLUDED_
00031 
00032 #ifndef SWIG // Remove whatever is not needed by SWIG
00033 
00034 #if _MSC_VER >= 1000
00035 #pragma once
00036 #endif // _MSC_VER >= 1000
00037 
00038 #include "Error.h"
00039 #include "ImageGrey.h"
00040 
00041 #endif // SWIG
00042 
00057 class CBasic : public CError
00058 {
00059 public:
00060         CBasic();
00061         virtual ~CBasic();
00062 
00064         int maxim(CImageGrey *in);
00066         int minim(CImageGrey *in);
00067 
00069         CImageGrey * copy(CImageGrey *img1);
00071                 CImageGrey * crop(CImageGrey *in, int left, int top, int width, int height);
00073                 CImageGrey * enlarge(CImageGrey *in, int widthBorder, int heightBorder, PIXEL bordercolor=0);
00075         CImageGrey * shrink(CImageGrey *img1, double zoom);
00077                 CImageGrey * rotate90(CImageGrey *img);
00079                 CImageGrey * transpose(CImageGrey *img);
00080 
00082         CImageGrey * thresh(CImageGrey *img1, int minimum, int maximum);
00084         CImageGrey * stretch(CImageGrey *img1);
00086         CImageGrey * invert(CImageGrey *img1);
00087 
00089         char * dump(CImageGrey *img, int topx, int topy, int sx, int sy, int trame=4); 
00090 };
00091 
00092 #endif // !defined(AFX_BASIC_H__8B9B0E81_8BC5_11D4_B181_C2959B5E2449__INCLUDED_)
00093 

Generated at Sun May 12 19:04:22 2002 for OpenMorpho by doxygen1.2.0 written by Dimitri van Heesch, © 1997-2000