00001 /* 00002 * Copyright (c) 1997, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * 00006 * Author(s): 00007 * Dennis Koelma (koelma@wins.uva.nl) 00008 * Edo Poll (poll@wins.uva.nl) 00009 */ 00010 00011 #ifndef HxDetector_h 00012 #define HxDetector_h 00013 00014 #include "HxString.h" 00015 #include "HxImageRep.h" 00016 #include "HxHistogram.h" 00017 00018 class HxDetector 00019 { 00020 public: 00021 static HxHistogram GreyEdgeHistogram( 00022 HxImageRep objImage, 00023 double sigma, double threshold); 00024 }; 00025 00026 #endif