/** * File: $RCSfile: camera_radial_dist2.h,v $ * Module: Functions for camera with 2 radial distortion parameters * Part of: Gandalf Library * * Revision: $Revision: 1.2 $ * Last edited: $Date: 2002/04/18 14:56:28 $ * Author: $Author: pm $ * Copyright: (c) 2000 Imagineer Software Limited */ /* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _GAN_CAMERA_RADIAL_DIST2_H #define _GAN_CAMERA_RADIAL_DIST2_H #include <stdio.h> #include <gandalf/vision/camera.h> #ifdef __cplusplus extern "C" { #endif /** * \addtogroup Vision * \{ */ /** * \addtogroup Camera * \{ */ Gan_Bool gan_camera_build_radial_distortion_2 ( Gan_Camera *camera, double zh, double fx, double fy, double x0, double y0, double K1, double K2 ); /** * \} */ /** * \} */ #ifdef __cplusplus } #endif #endif /* #ifndef _GAN_CAMERA_RADIAL_DIST2_H */