| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef _StenoseResult_h_
- #define _StenoseResult_h_
- namespace stenose
- {
- typedef struct Point
- {
- int x;
- int y;
- } Point;
- typedef struct StenoseNBResult
- {
- double m_dblSurface;
- double m_dblVesselArea;
- double m_dblRatio;
- double m_dblDensity;
- int m_dwMean;
- int code_retour;
-
- int code_debug1;
- int code_debug2;
- int code_debug3;
- int code_debug4;
- int code_debug5;
- int m_dwPoints;
- Point* m_pPoints;
- } StenoseNBResult;
- typedef struct StenoseResult
- {
- double m_dblEllipse;
- double m_dblStenose;
- double m_dblRatio;
-
- int code_retour;
-
- int code_debug1;
- int code_debug2;
- int code_debug3;
- int code_debug4;
- int code_debug5;
- /** Arrays of length = m_dwPoints.
- They contain the coordinates of detected points.
- **/
- int m_dwPoints;
- Point* m_pPoints;
- } StenoseResult;
- }
- #endif
|