WIP Mutations ranking
This commit is contained in:
+3
-1
@@ -29,14 +29,16 @@ public:
|
||||
bool loadDescriptors();
|
||||
bool createMutations();
|
||||
void similarImages(string image_name, int method, int numImages);
|
||||
void insertMutations(string image_name, int method);
|
||||
void outputMap(int a);
|
||||
void outputMap();
|
||||
private:
|
||||
static const int numDescriptors = 8;
|
||||
static const int numMutations = 1;
|
||||
static const int numMutations = 2;
|
||||
//TODO: automagically update this?
|
||||
|
||||
map<string, bitset<64>> descriptors[numDescriptors]; //array of maps that will hold the descriptors
|
||||
multiset<pair<unsigned long long, string> > distances; //multiset that stores the distances
|
||||
fs::path img_path; //where the images are
|
||||
Descriptor* descriptor_types[numDescriptors];
|
||||
Mutation* mutators[numMutations];
|
||||
|
||||
Reference in New Issue
Block a user