00001 00007 00008 // This software is distributed as part of the Improla library. 00009 // Improla is a library of classes for image processing. 00010 // 00011 // Copyright (c) 2004, B. R. Siva Chandra, India 00012 // 00013 // This program is free software; you can redistribute it and/or 00014 // modify it under the terms of the GNU General Public License 00015 // as published by the Free Software Foundation; either version 2 00016 // of the License, or (at your option) any later version. 00017 // 00018 // This program is distributed in the hope that it will be useful, 00019 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 // GNU General Public License for more details. 00022 // 00023 // You should have received a copy of the GNU General Public License 00024 // along with this program; if not, write to the Free Software 00025 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00026 // 00027 // In case you would like to contact the author, use the following e-mail 00028 // address: sivachandra_br@yahoo.com 00030 00032 // First Created : 12th October 2004 00033 // Author : Siva Chandra 00034 // Purpose : Declares a base class for morphological operations which use a 00035 // Strel (Structure Element). 00037 00038 #ifndef __MORPHOLOGICAL_OPERATION_USING_STREL_H__ 00039 #define __MORPHOLOGICAL_OPERATION_USING_STREL_H__ 00040 00041 #include <ip_function.h> 00042 00043 namespace iptk 00044 { // Start of namespace iptk. 00045 00050 class MorphologicalOperationUsingStrel : public IP_Function 00051 { 00052 public: 00056 MorphologicalOperationUsingStrel(void); 00057 00060 MorphologicalOperationUsingStrel(const iptk::Image &im); 00061 00064 MorphologicalOperationUsingStrel(const MorphologicalOperationUsingStrel &mos); 00065 00068 virtual ~MorphologicalOperationUsingStrel(); 00069 00073 virtual void process(void) = 0; 00074 00079 virtual void setParams(double params[]); 00080 00084 virtual iptk::Image getResult(void); 00085 00086 protected: 00089 int STREL_SIZE; 00090 00093 iptk::Image RESULT; 00094 }; 00095 00096 } // End of namespace iptk. 00097 00098 #endif // __MORPHOLOGICAL_OPERATION_USING_STREL_H__ 00099