我正在编写一个应用程序,该应用程序需要我存储来自设备摄像头的像素数据并将像素与之前的视频帧进行比较。
这是给我带来问题的方法:
-(UIImage *)detectMotion:(CGImageRef)imageRef
{
UIImage *newImage = nil;
NSUInteger width = CGImageGetWidth(imageRef);
NSUInteger height = CGImageGetHeight(imageRef);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
unsigned char *rawData = malloc(height * width * 4);
NSUInteger bytesPerPixel = 4;
NSUInteger bytesPerRow = bytesPerPixel * width;
NSUInteger bitsPerComponent = 8;
CGContextRef context = CGBitmapContextCreate(rawData, width, height, bitsPerComponent, bytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
// this is the problem loop
for(int i = 0; i < width * height * 4; i += 4) {
int gray = 0.216 * rawData[i] + 0.715 * rawData[i + 1] + 0.0722 * rawData[i + 2];
rawData[i] = gray;
rawData[i + 1] = gray;
rawData[i + 2] = gray;
rawData[i + 3] = 255;
int grayDelta = abs(gray - prevFrameRawData[i / 4]);
int newColor = 0;
if (sqrt(grayDelta * grayDelta * 2) >= 60) {
newColor = 255;
}
rawData[i] = newColor;
rawData[i + 1] = newColor;
rawData[i + 2] = newColor;
rawData[i + 3] = 255;
prevFrameRawData[i / 4] = gray;
}
CGImageRef newCGImage = CGBitmapContextCreateImage(context);
newImage = [UIImage imageWithCGImage:newCGImage];
CGImageRelease(newCGImage);
CGContextRelease(context);
free(rawData);
}
注意:prevFrameRawData 在类的 init 方法中 malloc'd,然后在 dealloc 方法中释放。
在做了一些测试之后,我发现如果我没有为内存块分配任何值,我就不会收到警告。
我认为当你分配一个值时
rawData[i] = value
它只是覆盖了内存中的那个位置。
所有这些低级c的东西对我来说都是新的,希望你们能提供帮助。