brainrat-private 6.0.4
overlap_method.h
Go to the documentation of this file.
1/* Copyright (C) 2000-2013 CEA
2 *
3 * This software and supporting documentation were developed by
4 * bioPICSEL
5 * CEA/DSV/I²BM/MIRCen/LMN, Batiment 61,
6 * 18, route du Panorama
7 * 92265 Fontenay-aux-Roses
8 * France
9 */
10
11
12#ifndef BRAINRAT_OVERLAP_OVERLAP_METHOD_H
13#define BRAINRAT_OVERLAP_OVERLAP_METHOD_H
14
15#include <aims/data/data.h>
16
17template<class T>
19{
20public:
21
23 virtual ~Overlap_Method(){}
24// virtual double doit( T ref, T test, T true_positive, T bin_vol_ref ) = 0; --> pr calcul specificity
25 virtual double doit( T ref, T test, T true_positive) = 0;
26
27};
28
29#endif
virtual double doit(T ref, T test, T true_positive)=0
virtual ~Overlap_Method()