问:我想使用iPhone相机拍照,然后用另一张照片替换该照片中的绿色屏幕。
最好的方法是什么?我在网上找不到很多资源。
提前致谢!
答案 0 :(得分:2)
从概念上讲,您需要做的就是遍历手机拍摄的照片的像素数据,对于不在特定绿色范围内的每个像素,将像素复制到背景图像上的相同位置。
以下是我从keremic对another stackoverflow问题的回答修改的示例。 注意:这是未经测试的,只是为了让您了解可行的技术
//Get data into C array
CGImageRef image = [UIImage CGImage];
NSUInteger width = CGImageGetWidth(image);
NSUInteger height = CGImageGetHeight(image);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
NSUInteger bytesPerPixel = 4;
NSUInteger bytesPerRow = bytesPerPixel_ * width;
NSUInteger bitsPerComponent = 8;
unsigned char *data = malloc(height * width * bytesPerPixel);
// you will need to copy your background image into resulting_image_data.
// which I am not showing here
unsigned char *resulting_image_data = malloc(height * width * bytesPerPixel);
CGContextRef context = CGBitmapContextCreate(rawData, width, height, bitsPerComponent, bytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGContextDrawImage(context, CGRectMake(0, 0, width, height));
CGContextRelease(context);
//loop through each pixel
for(int row = 0; row < height; row++){
for(int col = 0; col < width*bytesPerPixel; col=col+4){
red = data[col];
green = data[col + 1];
blue = data[col + 2];
alpha = data[col + 3];
// if the pixel is within a shade of green
if(!(green > 250 && red < 10 && blue < 10)){
//copy them over to the background image
resulting_image_data[row*col] = red;
resulting_image_data[row*col+1] = green;
resulting_image_data[row*col+2] = blue;
resulting_image_data[row*col+3] = alpha;
}
}
}
//covert resulting_image_data into a UIImage
答案 1 :(得分:0)
看一下为iPhone编译OpenCV - 这不是一件容易的事,但它可以让你访问一个非常棒的图像处理工具库。
我正在使用openCV作为我正在开发的应用程序(并非与你的不同) - 对于你想要做的事情,openCV将是一个很好的解决方案,虽然它需要一些学习等一旦你有OpenCV工作,去除绿色的实际任务不应该太难。
修改:如果您决定使用OpenCV,此链接将是一个有用的资源:Compiling OpenCV for iOS