/* pHash, the open source perceptual hash library Copyright (C) 2009 Aetilius, Inc. All rights reserved. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Evan Klinger - eklinger@phash.org David Starkweather - dstarkweather@phash.org */ #include #include #include "pHash.h" float distancefunc(DP *pa, DP *pb) { float d = 10 * hammingdistance(pa, pb) / 64; float res = exp(d) - 1; return res; } int main(int argc, char **argv) { const char *dir_name = argv[1]; /* name of dir to retrieve image files */ const char *filename = argv[2]; /* name of file to save db */ MVPFile mvpfile; ph_mvp_init(&mvpfile); mvpfile.filename = strdup(filename); mvpfile.hashdist = distancefunc; mvpfile.hash_type = UINT64ARRAY; mvpfile.pgsize = 4096; mvpfile.leafcapacity = 25; int nbfiles = 0; printf("dir name: %s\n", dir_name); char **files = ph_readfilenames(dir_name, nbfiles); if (!files) { printf("mem alloc error\n"); exit(1); } printf("nbfiles = %d\n", nbfiles); DP **hashlist = (DP **)malloc(nbfiles * sizeof(DP *)); if (!hashlist) { printf("mem alloc error\n"); exit(1); } ulong64 tmphash = 0; int count = 0; for (int i = 0; i < nbfiles; i++) { printf("file[%d]: %s\n", i, files[i]); hashlist[count] = ph_malloc_datapoint(mvpfile.hash_type); if (hashlist[count] == NULL) { printf("mem alloc error\n"); exit(1); } hashlist[count]->hash = malloc(sizeof(ulong64)); hashlist[count]->id = files[i]; if (ph_dct_imagehash(files[i], tmphash) < 0) { printf("unable to get hash\n"); continue; } *((ulong64 *)hashlist[count]->hash) = tmphash; hashlist[count]->hash_length = 1; count++; } MVPRetCode ret = ph_save_mvptree(&mvpfile, hashlist, count); if (ret != PH_SUCCESS) { printf("unable to save %s, error: %d\n", filename, ret); exit(1); } return 0; }