PlaqueResult.h 832 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #ifndef _PlaqueResult_h_
  2. #define _PlaqueResult_h_
  3. namespace plaque
  4. {
  5. typedef struct Point
  6. {
  7. int x;
  8. int y;
  9. } Point;
  10. typedef struct PlaqueResult
  11. {
  12. double plaque_max_thickness;
  13. double plaque_mean_thickness;
  14. double plaque_area;
  15. double plaque_mean_density;
  16. int numberOfMeasures;
  17. int code_retour;
  18. int code_debug1;
  19. int code_debug2;
  20. int code_debug3;
  21. int code_debug4;
  22. int code_debug5;
  23. int m_type;
  24. int m_Etape;
  25. Point *m_tPtLongeantPlaque;
  26. int m_nPtLongeantPlaque;
  27. Point *m_ptList;
  28. int m_nPtList;
  29. Point *m_tbPtsTrouvesFin;
  30. int m_nVecteursTrouves;
  31. Point m_ptInferieur;
  32. unsigned char *m_dataImg;
  33. long m_nbpix;
  34. } PlaqueResult;
  35. }
  36. #endif