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 /* ************************* labelcc.h **********************************/ 00020 /* */ 00021 /* descripteurs et prototypes associes a l'operateur labelcc */ 00022 /* */ 00023 /* Derniere modif : E. TROUVE, 18/10/99 */ 00024 /* *********************************************************************/ 00025 00026 /* pas de code avant cette ligne*/ 00027 #ifndef __labelcc 00028 #define __labelcc 00029 00032 typedef struct{ 00033 int connex; 00034 int seuil; 00035 int contraste; 00036 } labelcc_t; 00037 00038 param *labelcc_lect(labelcc_t *des, param *ptp, char *debq); 00039 int labelccu1_init(labelcc_t *des, imau1 im0, imau2 *imres); 00040 int labelccu1_calc(labelcc_t *des, imau1 im0, imau2 *imres); 00041 00042 /*pas de code après cette ligne */ 00043 #endif 00044 00045