salut ,
j'ai des erreurs dans la compilation
voici la fonction hough_space2d
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 [C++ Error] hough_space2d.h(231): E2111 Type 'CHoughSpace2D' may not be defined here [C++ Error] hough_space2d.h(231): E2316 'CHoughSpace2D::GetParameterRangeValue(int,int) const' is not a member of 'CHoughSpace2D' [C++ Error] hough_space2d.h(231): E2111 Type 'CHoughSpace2D' may not be defined here [C++ Error] hough_space2d.h(231): E2316 'CHoughSpace2D::GetParameterRangeValue(int,int) const' is not a member of 'CHoughSpace2D'
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 inline float CHoughSpace2D::GetParameterRangeValue(int i, int j) const { CPoint2D<float> p; if (i==1) p = m_param1ValueRange; else p = m_param2ValueRange; if (j==1) return p.GetX(); else return p.GetY(); }
Comment puis je remédier à ces erreurs ?
merci
Partager