作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 GPUImageFilterGroup 将一些滤镜应用于图像。所有过滤器 稳定(所有参数都是常量),但最后 过滤器是可变 (某些参数已更改)。
我需要在更改最后一个过滤器后重绘图像。
现在我在源 GPUImagePicture 上调用 processImage,但此调用重绘所有过滤器并且速度太慢。
如何只重绘组中的最后一个过滤器?
我认为,我应该在绘制最后一个过滤器之前保存帧缓冲区的副本,并且当我更改了最后一个过滤器中的某些参数时,我应该使用保存的帧缓冲区来重绘最后一个过滤器。但我找不到如何保存帧缓冲区的副本。
最佳答案
我已经通过子类化 GPUImageFilter 和 GPUImageFilterGroup 解决了这个问题。在 GPUImageFilter 中,我重载了方法
- (void)newFrameReadyAtTime:(CMTime)frameTime atIndex:(NSInteger)textureIndex
<...>
[self renderToTextureWithVertices:imageVertices textureCoordinates:[[self class] textureCoordinatesForRotation:inputRotation]];
_bufferCallback(self);
[self informTargetsAboutNewFrameAtTime:frameTime];
<...>
在 GPUImageFilterGroup 中,我重载了方法:
- (void)addFilter:(GPUImageOutput<GPUImageInput> *)newFilter
{
NSParameterAssert([newFilter isKindOfClass: [FAEShiftFilterWithBackOutputBuffer class]]);
if ([newFilter isKindOfClass:[FAEShiftFilterWithBackOutputBuffer class]])
{
__weak typeof(self) selfWeak = self;
[(FAEShiftFilterWithBackOutputBuffer*)newFilter setOutputBufferCallback:^(FAEShiftFilterWithBackOutputBuffer *sender) {
__strong typeof(selfWeak) selfStrong = selfWeak;
if (selfStrong)
{
if (!selfStrong.lastFramebuffer)
{
if ([selfStrong isPreLastFilter:sender])
{
selfStrong.lastFramebuffer = [sender framebufferForOutput];
[selfStrong.lastFramebuffer lock];
}
}
}
}];
}
[super addFilter:newFilter];
}
此方法存储来自 preLast 过滤器的 outputFrameBuffer。及方法:
- (void)newFrameReadyAtTime:(CMTime)frameTime atIndex:(NSInteger)textureIndex
{
if (self.filterCount > 1)
{
if (self.lastFramebuffer)
{
GPUImageFilter* lastFilter = (GPUImageFilter*)self.terminalFilter;
[lastFilter setInputFramebuffer:self.lastFramebuffer atIndex:0];
[lastFilter newFrameReadyAtTime:frameTime atIndex:textureIndex];
}
else
{
[super newFrameReadyAtTime:frameTime atIndex:textureIndex];
}
}
else
{
[super newFrameReadyAtTime:frameTime atIndex:textureIndex];
}
}
我还在 dealloc 和 forceProcessingAtSize 以及 forceProcessingAtSizeRespectingAspectRatio 方法中重置了保存的帧缓冲区。
- (void)_clearLastFrameBuffer
{
if (_lastFramebuffer)
{
[_lastFramebuffer unlock];
_lastFramebuffer = nil;
}
}
关于ios - 更新 GPUImageFilterGroup 中的一个滤镜而不重绘所有滤镜,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31675757/
我是一名优秀的程序员,十分优秀!