EIMResult.h 438 B

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