shapematching.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*************************************/
  2. /* Auteur : Rémi Synave */
  3. /* Date de création : 01/10/08 */
  4. /* Date de modification : 15/03/15 */
  5. /* Version : 0.4 */
  6. /*************************************/
  7. /***************************************************************************/
  8. /* This file is part of a2ri. */
  9. /* */
  10. /* a2ri is free software: you can redistribute it and/or modify it */
  11. /* under the terms of the GNU Lesser General Public License as published */
  12. /* by the Free Software Foundation, either version 3 of the License, or */
  13. /* (at your option) any later version. */
  14. /* */
  15. /* a2ri is distributed in the hope that it will be useful, */
  16. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  17. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  18. /* GNU Lesser General Public License for more details. */
  19. /* */
  20. /* You should have received a copy of the GNU Lesser General Public */
  21. /* License along with a2ri. */
  22. /* If not, see <http://www.gnu.org/licenses/>. */
  23. /***************************************************************************/
  24. #ifndef SHAPEMATCHING__H
  25. #define SHAPEMATCHING__H
  26. #include "model.h"
  27. #include "util.h"
  28. #include "point.h"
  29. #include "geometry.h"
  30. /**
  31. Calcul de l'empreinte d'un modèle
  32. @param m le modèle
  33. @param nb_tranche nombre de tranche de l'empreinte
  34. @param list liste de retour de l'empreinte
  35. @return aucun
  36. **/
  37. void a2ri_vf_empreinte (
  38. const vf_model * const m,
  39. int nb_tranche,
  40. double **list);
  41. #endif