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 00020 00021 00022 /*pas de code avant cette ligne */ 00023 #ifndef __carte_distance 00024 #define __carte_distance 00025 00026 00027 #include "volume.h" 00028 #include "image.h" 00029 #include "proto2D.h" 00030 00031 00032 00033 typedef struct{ 00034 unsigned int mask_av[5][5][5]; 00035 float L, H, P; 00036 }carte_distance3d_t; 00037 00038 00039 param* carte_distance3d_lect(carte_distance3d_t* des, param* ptp, char* debq); 00040 int carte_distance3d_init(carte_distance3d_t* des); 00041 int carte_distance3d_calc(carte_distance3d_t* des, ima3Du4* ima); 00042 00043 00044 /*pas de code aprés cette ligne*/ 00045 #endif 00046