EIMResult.h 480 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef _IMTResult_h_
  2. #define _IMTResult_h_
  3. namespace imt
  4. {
  5. typedef struct Point
  6. {
  7. int x;
  8. int y;
  9. } Point;
  10. typedef struct IMTResult
  11. {
  12. double imt_max;
  13. double imt_mean;
  14. double imt_standardDeviation;
  15. double intima_mean;
  16. double media_mean;
  17. double qualityIndex;
  18. double distance;
  19. int numberOfPoints;
  20. Point* vect_intima;
  21. Point* vect_media;
  22. Point* vect_adventitia;
  23. Point p0;
  24. Point p1;
  25. } IMTResult;
  26. }
  27. #endif