/** * @file fastbilateral.h * @brief Fast bilateral filtering * * * This file is a part of PFSTMO package. * ---------------------------------------------------------------------- * Copyright (C) 2003,2004 Grzegorz Krawczyk * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ---------------------------------------------------------------------- * * @author Grzegorz Krawczyk, * * $Id: fastbilateral.h,v 1.1 2007/06/14 16:41:31 gkrawczyk Exp $ */ #ifndef _fastbilateral_h_ #define _fastbilateral_h_ /** * @brief Fast bilateral filtering * * Pieceweise linear algorithm (fast). * * @param I [in] input array * @param J [out] filtered array * @param sigma_s sigma value for spatial kernel * @param sigma_r sigma value for range kernel */ void fastBilateralFilter( const pfs::Array2D *I, pfs::Array2D *J, float sigma_s, float sigma_r, int downsample); #endif /* #ifndef _fastbilateral_h_ */