00001 /* 00002 * Copyright (c) 2007. The BATI team. All right reserved. 00003 * 00004 * This file is part of BATI library. 00005 * 00006 * BATI library is free software: you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation, either version 3 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * BATI library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with BATI library. If not, see <http://www.gnu.org/licenses/>. 00018 */ 00019 /* ************************* bidon.h **********************************/ 00020 /* */ 00021 /* descripteurs et prototypes associes a l'operateur bidon */ 00022 /* */ 00023 /* Derniere modif : E. TROUVE, 18/10/99 */ 00024 /* *********************************************************************/ 00025 00026 00027 /* pas de code avant cette ligne*/ 00028 #ifndef __bidon 00029 #define __bidon 00030 00034 typedef struct { 00035 int dimX, dimY; 00036 float gain; 00037 char forme[200]; 00038 imafl msq; 00039 } bidon_t; 00040 00041 param *bidon_lect(bidon_t *des, param *ptp, char *debq); 00042 int bidonu1_init(bidon_t *des, imau1 im0, imau1 *imres); 00043 int bidonu1_calc(bidon_t *des, imau1 im0, imau1 *imres); 00044 00045 00046 /*pas de code après cette ligne */ 00047 #endif