3dpcp/.svn/pristine/4b/4b3533c00aba4e44cc5b52bf4b188622eb1b7d2e.svn-base

59 lines
1.2 KiB
Text
Raw Normal View History

2012-09-16 12:33:11 +00:00
#include "veloslam/gridcell.h"
#include "veloslam/gridcluster.h"
#include "veloslam/svm.h"
float absf(float a);
struct IntersectionFeature
{
float angle;
float slashLength;
int slashEndColumn;
int slashEndRow;
};
class IntersectionDetection
{
public:
IntersectionDetection();
~IntersectionDetection();
int GetPointData();
int CalcRadAndTheta();
int CalPointCellPos(double x,double y,double z ,int * column,int * row);
int CalCellMinDis();
int TransferToCellArray();
int CalcAllCellFeature();
int CalcCellFeature(cell& cellobj, cellFeature& f);
int CalWideSlashEdge_For_RoadShape(float Angle,int startColumID,int startRowID,float maxLength,float wide);
int DetectIntersection();
private:
int cellSize;
int columnNum;
int cellNum;
int MinRad;
int MaxRad;
vector <Point> allPoints_AfterRegstn;
cellArray cellArray_AfterRegstn;
cellFeatureArray cellFeatureArray_AfterRegstn;
float slashWide;
float slashMaxLength;
float slashAngleDefinition;
vector <float> minCellDisList;
vector <IntersectionFeature> intersectionFeature;
/* clusterArray clusterArrayAfterRegstn;
clusterFeatureArray clusterFeatureArray_AfterRegstn;
*/
};