我正在尝试加快我不久前写的一些代码。
在 Xcode 中使用工具我发现主要瓶颈在于此方法,尤其是 getPixel 调用。
- (BOOL)fasterCompareImage:(NSBitmapImageRep *)imageRepA IdenticalTo:(NSBitmapImageRep *)imageRepB {
// look for obvious differences ie: width and height differences...
NSSize imageASize = [imageRepA size];
NSSize imageBSize = [imageRepB size];
if( (imageASize.width != imageBSize.width) || (imageASize.height != imageBSize.height) ) {
return NO;
}
// now start looking at each point
NSUInteger pixelOfA[3];
NSUInteger pixelOfB[3];
for (int row = 0; row < (imageASize.height); row = row +1) {
for(int col = 0; col < (imageASize.width); col = col +1) {
[imageRepA getPixel:pixelOfA atX:row y:col];
[imageRepB getPixel:pixelOfB atX:row y:col];
if(pixelOfA[1] != pixelOfB[1]) {
return NO;
}
}
}
return YES;
}
基本上我的方法需要两个 NSBitmapImageRep 对象并逐个像素地比较它们以寻找差异。
有没有人对代码或不同的方法有任何建议?