00001 /*! @file Channels/ContourChannel.H [put description here] */ 00002 00003 // ContourChannel.H -- Contour facilitation channel 00004 00005 // //////////////////////////////////////////////////////////////////// // 00006 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2001 by the // 00007 // University of Southern California (USC) and the iLab at USC. // 00008 // See http://iLab.usc.edu for information about this project. // 00009 // //////////////////////////////////////////////////////////////////// // 00010 // Major portions of the iLab Neuromorphic Vision Toolkit are protected // 00011 // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency // 00012 // in Visual Environments, and Applications'' by Christof Koch and // 00013 // Laurent Itti, California Institute of Technology, 2001 (patent // 00014 // pending; filed July 23, 2001, following provisional applications // 00015 // No. 60/274,674 filed March 8, 2001 and 60/288,724 filed May 4, 2001).// 00016 // //////////////////////////////////////////////////////////////////// // 00017 // This file is part of the iLab Neuromorphic Vision C++ Toolkit. // 00018 // // 00019 // The iLab Neuromorphic Vision C++ Toolkit is free software; you can // 00020 // redistribute it and/or modify it under the terms of the GNU General // 00021 // Public License as published by the Free Software Foundation; either // 00022 // version 2 of the License, or (at your option) any later version. // 00023 // // 00024 // The iLab Neuromorphic Vision C++ Toolkit is distributed in the hope // 00025 // that it will be useful, but WITHOUT ANY WARRANTY; without even the // 00026 // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // 00027 // PURPOSE. See the GNU General Public License for more details. // 00028 // // 00029 // You should have received a copy of the GNU General Public License // 00030 // along with the iLab Neuromorphic Vision C++ Toolkit; if not, write // 00031 // to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, // 00032 // Boston, MA 02111-1307 USA. // 00033 // //////////////////////////////////////////////////////////////////// // 00034 // 00035 // Primary maintainer for this file: Rob Peters <rjpeters@klab.caltech.edu> 00036 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Channels/ContourChannel.H $ 00037 // $Id: ContourChannel.H 8845 2007-10-17 16:43:15Z rjpeters $ 00038 // 00039 00040 #ifndef CONTOURCHANNEL_H_DEFINED 00041 #define CONTOURCHANNEL_H_DEFINED 00042 00043 #include <string> 00044 00045 class ChannelBase; 00046 class OptionManager; 00047 namespace rutz { template <class T> class shared_ptr; } 00048 namespace nub { template <class T> class ref; } 00049 00050 //! Factory function that creates a new ContourChannel. 00051 nub::ref<ChannelBase> makeContourChannel(OptionManager& mgr, 00052 const std::string& saveprefix = "contour"); 00053 00054 #endif // !CONTOURCHANNEL_H_DEFINED