-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTrackInfo.h
More file actions
35 lines (30 loc) · 779 Bytes
/
Copy pathTrackInfo.h
File metadata and controls
35 lines (30 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*********************************************************************
* Author : Himangshu Saikia
* Email : saikia@kth.se
* Project : Merge Tree Library
*
*********************************************************************
*/
#pragma once
#include <iostream>
#include <vector>
#include <set>
#include <queue>
#include <map>
#include <sstream>
#include <fstream>
#include <algorithm>
#include "globals.h"
namespace mtlib {
class TrackInfo {
public:
void init(int n1, int n2);
int numFeatures1;
int numFeatures2;
std::vector<std::vector<double> > histogramDist;
std::vector<std::vector<double> > volDist;
std::vector<std::vector<double> > normOverlap;
std::vector<std::vector<double> > normOverlapOld;
std::vector<std::vector<double> > cmDist;
};
}