00001 #ifndef __GreyImageSE__ 00002 #define __GreyImageSE__ 00003 00004 00005 00024 #include "StructuredElement.hpp" 00025 00026 00027 class GreyImageSE : public StructuredElement 00028 { 00029 public: 00030 GreyImageSE(AnImage* im): StructuredElement(im->getWidth()/2, im->getHeight()/2, im){} 00031 virtual ~GreyImageSE(){} 00032 00033 00034 virtual void report(FILE* file){} 00035 00036 }; 00037 00038 #endif