| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef _PlaqueResult_h_
- #define _PlaqueResult_h_
- namespace plaque
- {
- typedef struct Point
- {
- int x;
- int y;
- } Point;
- typedef struct PlaqueResult
- {
- double plaque_max_thickness;
-
- double plaque_mean_thickness;
-
- double plaque_area;
-
- double plaque_mean_density;
-
- int numberOfMeasures;
- int code_retour;
-
- int code_debug1;
- int code_debug2;
- int code_debug3;
- int code_debug4;
- int code_debug5;
-
- int m_type;
- int m_Etape;
-
- Point *m_tPtLongeantPlaque;
- int m_nPtLongeantPlaque;
-
- Point *m_ptList;
- int m_nPtList;
-
- Point *m_tbPtsTrouvesFin;
- int m_nVecteursTrouves;
-
- Point m_ptInferieur;
-
- unsigned char *m_dataImg;
- long m_nbpix;
-
- } PlaqueResult;
- }
- #endif
|