5

我正在将 ciimage 转换为单色,使用 CICrop 进行裁剪并运行 sobel 来检测边缘,底部的 #if 部分用于显示结果

CIImage *ci = [[CIImage alloc] initWithCGImage:uiImage.CGImage];

CIImage *gray = [CIFilter filterWithName:@"CIColorMonochrome" keysAndValues:
      @"inputImage", ci, @"inputColor", [[CIColor alloc] initWithColor:[UIColor whiteColor]],
      nil].outputImage;



CGRect rect = [ci extent];
rect.origin = CGPointZero;

CGRect cropRectLeft = CGRectMake(0, 0, rect.size.width * 0.2, rect.size.height);
CIVector *cropRect = [CIVector vectorWithX:rect.origin.x Y:rect.origin.y Z:rect.size.width* 0.2 W:rect.size.height];
CIImage *left = [gray imageByCroppingToRect:cropRectLeft];

CIFilter *cropFilter = [CIFilter filterWithName:@"CICrop"];

[cropFilter setValue:left forKey:@"inputImage"];
[cropFilter setValue:cropRect forKey:@"inputRectangle"];

// The sobel convoloution will produce an image that is 0.5,0.5,0.5,0.5 whereever the image is flat
// On edges the image will contain values that deviate from that based on the strength and
// direction of the edge
const double g = 1.;
const CGFloat weights[] = { 1*g, 0, -1*g,
    2*g, 0, -2*g,
    1*g, 0, -1*g};
left = [CIFilter filterWithName:@"CIConvolution3X3" keysAndValues:
      @"inputImage", cropFilter.outputImage,
      @"inputWeights", [CIVector vectorWithValues:weights count:9],
      @"inputBias", @0.5,
      nil].outputImage;

#define VISUALHELP 1
#if VISUALHELP
CGImageRef imageRefLeft = [gcicontext createCGImage:left fromRect:cropRectLeft];
CGContextDrawImage(context, cropRectLeft, imageRefLeft);
CGImageRelease(imageRefLeft);
#endif

现在,只要 3x3 卷积不是 ciimage 管道的一部分,我运行边缘检测的图像部分就会显示为灰色,但只要 CIConvolution3X3 后缀是处理管道的一部分,颜色就会神奇地出现。无论我使用 CIColorMonochrome 还是 CIPhotoEffectMono 前缀去除颜​​色,都会发生这种情况。任何想法如何将颜色一直保持到管道底部?tnx

UPD:毫不奇怪,运行一个粗略的自定义单色内核,比如这个

kernel vec4 gray(sampler image)
{
    vec4 s = sample(image, samplerCoord(image));
    float r = (s.r * .299 + s.g * .587 + s.b * 0.114) * s.a;
    s = vec4(r, r, r, 1);
    return s;
}

当 3x3 卷积是我的 ci 管道的一部分时,而不是使用来自苹果的标准单声道过滤器会导致颜色返回完全相同的问题

4

2 回答 2

4

这个问题是 CI 卷积操作(例如 CIConvolution3X3、CIConvolution5X5 和 CIGaussianBlur)在输入图像的所有四个通道上运行。这意味着,在您的代码示例中,生成的 alpha 通道将为 0.5,而您可能希望它为 1.0。尝试在卷积之后添加一个简单的内核以将 alpha 设置回 1。

于 2015-01-25T21:11:31.957 回答
2

跟进:我放弃了 coreimage 来完成这项任务。似乎使用 CIFilter 或 CIKernel 的两个实例会导致冲突。coreimage 内部某个地方的某个人似乎错误地操纵了 gles 状态,因此,对出错的地方进行逆向工程最终比使用 core image 以外的东西(使用自定义 ci 过滤器,无论如何只能在 ios8 上工作)gpuimage 似乎没有那么错误和容易服务/调试(我没有从属关系)

于 2014-11-05T15:16:40.560 回答