Revision 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC, committed by ennetws on 13 March 2015, 18:17:18 UTC
1 parent c702819
Raw File
PairRelationScorer.h
#pragma once
#include "RelationDetector.h"
class PairRelationScorer :
	public RelationDetector
{
public:
	PairRelationScorer(Structure::Graph* g, int ith, int logLevel=0):RelationDetector(g, "PairScorer-", ith, 0, logLevel)
    {
    }
	double evaluate(QVector<QVector<PairRelation> > &pairss, QVector<PART_LANDMARK> &corres);
private:
	void isParalOrthoCoplanar(PairRelation &cpr);	
};

back to top