Main Page   Class Hierarchy   Compound List   File List   Compound Members  

filter_.cpp

00001 /*=============================================================================
00002         File: filter.cpp
00003      Purpose:
00004     Revision: $Id: filter_.cpp,v 1.2 2002/05/13 21:07:45 philosophil Exp $
00005   Created by: Philippe Lavoie          (18 February 1999)
00006  Modified by: 
00007 
00008  Copyright notice:
00009           Copyright (C) 1996-1997 Philippe Lavoie
00010  
00011           This library is free software; you can redistribute it and/or
00012           modify it under the terms of the GNU Library General Public
00013           License as published by the Free Software Foundation; either
00014           version 2 of the License, or (at your option) any later version.
00015  
00016           This library is distributed in the hope that it will be useful,
00017           but WITHOUT ANY WARRANTY; without even the implied warranty of
00018           MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00019           Library General Public License for more details.
00020  
00021           You should have received a copy of the GNU Library General Public
00022           License along with this library; if not, write to the Free
00023           Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00024 =============================================================================*/
00025 
00026 #include "filter.cpp"
00027 
00028 namespace PLib {
00029 
00030   namespace Filter{
00031 
00032 #ifdef NO_IMPLICIT_TEMPLATES
00033     template void median(const Basic2DArray<int>& a, Basic2DArray<int>& b);
00034     template void median(const Basic2DArray<float>& a, Basic2DArray<float>& b);
00035     template void median(const Basic2DArray<double>& a, Basic2DArray<double>& b);
00036     template void median(const Basic2DArray<char>& a, Basic2DArray<char>& b);
00037     template void median(const Basic2DArray<unsigned char>& a, Basic2DArray<unsigned char>& b);
00038 
00039     template void medianT(const Basic2DArray<int>& a, Basic2DArray<int>& b, int, int);
00040     template void medianT(const Basic2DArray<float>& a, Basic2DArray<float>& b, float, int);
00041     template void medianT(const Basic2DArray<double>& a, Basic2DArray<double>& b, double, int);
00042     template void medianT(const Basic2DArray<char>& a, Basic2DArray<char>& b, char, int);
00043     template void medianT(const Basic2DArray<unsigned char>& a, Basic2DArray<unsigned char>& b, unsigned char, int);
00044 
00045 #endif
00046 
00047   }
00048 }

Generated on Tue Jun 24 13:26:55 2003 for NURBS++ by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002