First two descriptors migrated
This commit is contained in:
+3
-3
@@ -54,15 +54,15 @@ public:
|
||||
void outputMap();
|
||||
void outputRank(string imagename, int method);
|
||||
private:
|
||||
static const int numDescriptors = 8;
|
||||
static const int numDescriptors = 1;
|
||||
static const int numMutations = 8;
|
||||
//TODO: automagically update this?
|
||||
|
||||
bool initialized = false;
|
||||
int numImages;
|
||||
|
||||
map<string, bitset<64>> features[numDescriptors]; //array of maps that will hold the descriptors
|
||||
map<string, bitset<64>> mutatedFeatures[numDescriptors][numMutations];
|
||||
map<string, uint64_t> features[numDescriptors]; //array of maps that will hold the descriptors
|
||||
map<string, uint64_t> mutatedFeatures[numDescriptors][numMutations];
|
||||
multiset<pair<unsigned long long, string> > distances; //multiset that stores the distances
|
||||
fs::path img_path; //where the images are
|
||||
Descriptor* descriptor_types[numDescriptors];
|
||||
|
||||
Reference in New Issue
Block a user