blob: e4fa20808e023624349e4614950dbd49c01e8e2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _CES_H_
#define _CES_H_
class ConvexHull;
class Hypergraph;
class SegmentEvaluator;
class ErrorSurface;
class EvaluationMetric;
void ComputeErrorSurface(const SegmentEvaluator& ss,
const ConvexHull& convex_hull,
ErrorSurface* es,
const EvaluationMetric* metric,
const Hypergraph& hg);
#endif
|