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 /* ************************* eval_volume.h ************************************/ 00020 /* */ 00021 /* descripteurs et prototypes associes a l'operateur d'evaluation des bloc 3D */ 00022 /* */ 00023 /* Derniere modif : L. Valet, 22.11.2006 */ 00024 /* *****************************************************************************/ 00025 /*pas de code avant cette ligne */ 00026 #ifndef __eval3d 00027 #define __eval3d 00028 00029 #include "volume.h" /* descripteurs et prototypes des fonctions de ima3D */ 00030 #include "image.h" 00031 #include "proto2D.h" 00032 00033 00034 00035 00036 typedef struct{ 00037 unsigned char classe; 00038 ima3Du8* ima_etiq; 00039 } eval_volume_t; 00040 00041 00042 /* Prototype des fonctions utilisées dans lreggr3d.c*/ 00043 param* eval_volume_lect(eval_volume_t* des, param* ptp, char* debq); 00044 int eval_volume_init(eval_volume_t* des, ima3Du1* imaIn); 00045 int eval_volume_calc(eval_volume_t* des, ima3Du1* imaIn); 00046 int eval_volume_ferm(eval_volume_t* des); 00047 00048 00049 00050 /*pas de code aprés cette ligne*/ 00051 #endif