00001 /* 00002 TerraLib - a library for developing GIS applications. 00003 Copyright 2001, 2002, 2003 INPE and Tecgraf/PUC-Rio. 00004 00005 This code is part of the TerraLib library. 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 You should have received a copy of the GNU Lesser General Public 00012 License along with this library. 00013 00014 The authors reassure the license terms regarding the warranties. 00015 They specifically disclaim any warranties, including, but not limited to, 00016 the implied warranties of merchantability and fitness for a particular 00017 purpose. The library provided hereunder is on an "as is" basis, and the 00018 authors have no obligation to provide maintenance, support, updates, 00019 enhancements, or modifications. 00020 In no event shall INPE be held liable to any party 00021 for direct, indirect, special, incidental, or consequential damages arising 00022 out of the use of this library and its documentation. 00023 */ 00024 00025 #ifndef TEPDIRADARFILTER_HPP 00026 #define TEPDIRADARFILTER_HPP 00027 00028 #include "TePDIBufferedFilter.hpp" 00029 #include "TePDIParameters.hpp" 00030 #include "../kernel/TeSharedPtr.h" 00031 00032 /** 00033 * @class TePDIRadarFilter 00034 * @brief This is the base class for radar filters. 00035 * @author Emiliano F. Castejon <castejon@dpi.inpe.br> 00036 * @ingroup TePDIFiltersGroup 00037 */ 00038 class PDI_DLL TePDIRadarFilter : public TePDIBufferedFilter { 00039 public : 00040 /** @typedef Type definition for a instance pointer */ 00041 typedef TeSharedPtr< TePDIRadarFilter > pointer; 00042 /** @typedef Type definition for a const instance pointer */ 00043 typedef const TeSharedPtr< TePDIRadarFilter > const_pointer; 00044 00045 /** 00046 * @brief Default Destructor 00047 */ 00048 virtual ~TePDIRadarFilter(); 00049 00050 protected : 00051 /** 00052 * @brief The maximum mask width for adaptative filters 00053 */ 00054 unsigned int max_adapt_mask_width_; 00055 00056 /** 00057 * @brief Default Constructor. 00058 * 00059 */ 00060 TePDIRadarFilter(); 00061 00062 /** 00063 * @brief Reset the internal state to the initial state. 00064 * 00065 * @param params The new parameters referente at initial state. 00066 */ 00067 virtual void ResetState( const TePDIParameters& params ); 00068 00069 }; 00070 00071 #endif //TEPDIRADARFILTER_HPP
1.5.3