Initial snark14m import
[snark14.git] / src / snark / DistanceMeasureWSQD.h
1 /* 
2  ***********************************************************
3  $SNARK_Header$
4  $HeadURL: svn://dig.cs.gc.cuny.edu/snark/trunk/src/snark/trm6.h $
5  $LastChangedRevision: 122 $
6  $Date: 2014-07-09 18:18:59 -0400 (Wed, 09 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9
10  Class to calculate the Weighted SQuared Distance (WSQD)
11
12  */
13
14 #ifndef Distance_Measure_WSQD
15 #define Distance_Measure_WSQD
16
17 #include "blkdta.h"
18 #include "DistanceMeasurePixel.h"
19
20 class DistanceMeasureWSQD: public DistanceMeasurePixel {
21
22 // attributes
23
24 // methods
25 public:
26         DistanceMeasureWSQD();
27         virtual ~DistanceMeasureWSQD();
28
29         virtual REAL calculateDistanceForPixel(REAL* reconPixel, INTEGER* list,
30                         REAL* weight);
31 };
32
33 #endif