aboutsummaryrefslogtreecommitdiff
path: root/signature_db.hpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2022-09-17 23:48:38 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2022-09-17 23:48:38 -0400
commit04f509fd948c03c8b8732ddb6787eea800bdc7f6 (patch)
treec82f4c00cd29f42b23066d8bb5123fa0b17a6e7b /signature_db.hpp
parentc684f2433cfe65e93d6ff31ae82e98644964520b (diff)
downloaddeduper-04f509fd948c03c8b8732ddb6787eea800bdc7f6.tar.xz
Finish similar image grouping.
Diffstat (limited to 'signature_db.hpp')
-rw-r--r--signature_db.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/signature_db.hpp b/signature_db.hpp
index c7e3997..a56ae1f 100644
--- a/signature_db.hpp
+++ b/signature_db.hpp
@@ -97,7 +97,10 @@ public:
size_t ds_find(size_t id);
void ds_merge(size_t id1, size_t id2);
+ //group similar images together using results from dupe_pairs()
+ //usually very fast, unless you have a crack ton of duplicates...
void group_similar();
+ //get all groups, each countained in their own lists.
std::vector<std::vector<size_t>> groups_get();
};