| 12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef _IMTResult_h_
- #define _IMTResult_h_
- namespace imt
- {
- typedef struct Point
- {
- int x;
- int y;
- } Point;
- typedef struct IMTResult
- {
- double imt_max;
- double imt_mean;
- double imt_standardDeviation;
- double intima_mean;
- double media_mean;
- double qualityIndex;
- double distance;
- int numberOfPoints;
- Point* vect_intima;
- Point* vect_media;
- Point* vect_adventitia;
- Point p0;
- Point p1;
- } IMTResult;
- }
- #endif
|