GPUImageAlphaBlendFilter - 不完整的过滤器 FBO:36054
Posted
技术标签:
【中文标题】GPUImageAlphaBlendFilter - 不完整的过滤器 FBO:36054【英文标题】:GPUImageAlphaBlendFilter - Incomplete filter FBO: 36054 【发布时间】:2013-06-24 13:36:19 【问题描述】:我正在尝试根据 GPUImage 示例中的 FilterShowcase 应用程序使用 GPUImageChromaKeyFilter,但显然我错过了一些东西,因为它崩溃了。
这是我的代码:
videoCamera = [[GPUImageVideoCamera alloc] initWithSessionPreset:AVCaptureSessionPreset640x480 cameraPosition:AVCaptureDevicePositionBack];
videoCamera.outputImageOrientation = UIInterfaceOrientationPortrait;
GPUImageChromaKeyFilter *filter = [[GPUImageChromaKeyFilter alloc] init];
[filter setColorToReplaceRed:0.0 green:1.0 blue:0.0];
[filter prepareForImageCapture];
videoView = [[GPUImageView alloc] initWithFrame:CGRectMake(0, 0, 640, 480)];
[self.view addSubview:videoView];
UIImage *inputImage = [UIImage imageNamed:@"bedroom.jpeg"];
GPUImagePicture *sourcePicture = [[GPUImagePicture alloc] initWithImage:inputImage smoothlyScaleOutput:YES];
[sourcePicture processImage];
[sourcePicture addTarget:filter];
[sourcePicture removeTarget:filter];
[videoCamera removeTarget:filter];
[videoCamera addTarget:filter];
GPUImageAlphaBlendFilter *blendFilter = [[GPUImageAlphaBlendFilter alloc] init];
blendFilter.mix = 1.0;
[sourcePicture addTarget:blendFilter];
[filter addTarget:blendFilter];
[blendFilter addTarget:videoView];
[videoCamera startCameraCapture];
当我运行它时,它只是告诉这个:
2013-06-24 15:24:45.369 GPUImage Test[1284:1703] * 断言失败 在 -[GPUImageAlphaBlendFilter createFilterFBOofSize:], /Users/hello/Desktop/xcode/GPUImage Test/GPUImage/framework/Source/GPUImageFilter.m:369
2013-06-24 15:24:45.383 GPUImage Test[1284:1703] * 终止应用 由于未捕获的异常“NSInternalInconsistencyException”,原因: '过滤器不完整 FBO: 36054'
* 首先抛出调用栈:
(0x3134f3e7 0x391d9963 0x3134f29d 0x31c25fa3 0xc9563 0xd608d 0xc8b3d 0xc9885 0xdaa63 0xcc11f 0xdb39f 0xca07b 0xcc153 0xd266f 0xd2dbb 0xd3f35 0x395f3793 0x395f6b3b 0x395f467d 0x395f7613 0x395f77d9 0x3961b7f1 0x3961b684)
libc++abi.dylib:终止调用抛出异常
有人看到我做错了吗?
提前致谢。
【问题讨论】:
看起来问题可能是过滤器被设置为混合过滤器的来源 【参考方案1】:-processImage
是异步的。当你调用它时它不会运行完成,所以你需要维护过滤器结构直到它完成处理。
这意味着您不能在之后立即调用-removeTarget:
,也意味着您需要将您的sourcePicture
实例作为实例变量挂起,直到处理完成。否则,它将在此方法结束时被释放,并因此拆除其输出。
您想设置过滤器链并在一切配置正确后运行-processImage
。只要您需要过滤结果,您就需要维护源图片。
【讨论】:
以上是关于GPUImageAlphaBlendFilter - 不完整的过滤器 FBO:36054的主要内容,如果未能解决你的问题,请参考以下文章