我使用 brew 从 phash 创建一个编译库我已经导入了 CImg.h 文件并且所有内容都编译但它不起作用。
我想从图像中做一个哈希,但我总是得到相同的输出
NSBundle *bundle = [NSBundle mainBundle];
NSString *path = [bundle pathForImageResource:@"branch.png"];
const char *image = [path cStringUsingEncoding:NSASCIIStringEncoding];
ulong64 hash = 0;
int valid = ph_dct_imagehash(image,hash);
NSLog(@"%i",valid);
NSLog(@"%llu",hash);
有了这个输出
sh: convert: command not found
sh: gm: command not found
sh: convert: command not found
sh: gm: command not found
sh: convert: command not found
sh: gm: command not found
2011-10-03 20:10:22.571 pHashi386[2155:60b] -1
2011-10-03 20:10:22.572 pHashi386[2155:60b] 0
显然出了点问题,但我不知道找不到的 sh 命令是什么,如果我走在正确的轨道上,也不知道。