00001 /** \dir src/Image 00002 00003 \brief Basic facilities for 2-D grayscale and color images 00004 00005 The Image library is centered around a ref-counted, copy-on-write 00006 Image template class. It can be instantiated with various built-in 00007 scalar types, as well as a variety of color pixel types (such as 00008 PixRGB, PixVideoYUV, PixHSV, etc.). 00009 00010 The interface to the Image class itself is intended to be minimal, 00011 yet complete. That is, it provides a full interface such that 00012 domain-specific image-processing functions can be implemented as 00013 free functions, without needed access to Image's private parts. A 00014 wide variety of such functions are implemented in the various 00015 other files in the src/Image directory. 00016 00017 */ 00018 00019 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Image/README.dxy $ 00020 // $Id: README.dxy 4836 2005-07-07 00:00:18Z rjpeters $ 00021 00022 // //////////////////////////////////////////////////////////////////// // 00023 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2001 by the // 00024 // University of Southern California (USC) and the iLab at USC. // 00025 // See http://iLab.usc.edu for information about this project. // 00026 // //////////////////////////////////////////////////////////////////// // 00027 // Major portions of the iLab Neuromorphic Vision Toolkit are protected // 00028 // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency // 00029 // in Visual Environments, and Applications'' by Christof Koch and // 00030 // Laurent Itti, California Institute of Technology, 2001 (patent // 00031 // pending; application number 09/912,225 filed July 23, 2001; see // 00032 // http://pair.uspto.gov/cgi-bin/final/home.pl for current status). // 00033 // //////////////////////////////////////////////////////////////////// // 00034 // This file is part of the iLab Neuromorphic Vision C++ Toolkit. // 00035 // // 00036 // The iLab Neuromorphic Vision C++ Toolkit is free software; you can // 00037 // redistribute it and/or modify it under the terms of the GNU General // 00038 // Public License as published by the Free Software Foundation; either // 00039 // version 2 of the License, or (at your option) any later version. // 00040 // // 00041 // The iLab Neuromorphic Vision C++ Toolkit is distributed in the hope // 00042 // that it will be useful, but WITHOUT ANY WARRANTY; without even the // 00043 // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // 00044 // PURPOSE. See the GNU General Public License for more details. // 00045 // // 00046 // You should have received a copy of the GNU General Public License // 00047 // along with the iLab Neuromorphic Vision C++ Toolkit; if not, write // 00048 // to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, // 00049 // Boston, MA 02111-1307 USA. // 00050 // //////////////////////////////////////////////////////////////////// //