00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * 00008 * Mark Alexander 00009 * Side Effects 00010 * 477 Richmond Street West 00011 * Toronto, Ontario 00012 * Canada M5V 3E7 00013 * 416-504-9876 00014 * 00015 * NAME: RU_Degrain.h 00016 * 00017 * COMMENTS: 00018 * Removes grain from an image. 00019 */ 00020 #ifndef RU_DEGRAIN_H 00021 #define RU_DEGRAIN_H 00022 00023 #include "RU_API.h" 00024 #include "RU_Algorithm.h" 00025 00026 class RU_API RU_Degrain : public RU_Algorithm 00027 { 00028 public: 00029 RU_Degrain() : mySize(5) {} 00030 00031 DECLARE_FILTER_OP(RU_DegrainOp); 00032 00033 int mySize; 00034 }; 00035 00036 #endif
1.5.9