将CIFiler应用于图像的蒙版部分

将CIFiler应用于图像的蒙版部分

本文介绍了将CIFiler应用于图像的蒙版部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一种方法将CIFilter应用于由蒙版定义的图像的一部分。这样的东西,给出一个图像:





我该怎么做?

解决方案

你可以用另一个情侣 CIFilter s!您可以使用,然后使用。


I'm looking for a way to apply a CIFilter to a portion of an image defined by a mask. Something like this, given an image:

Source http://imageshack.us/scaled/landing/213/browserpreviewtmp1p.jpg

And a mask:

I apply some variation of

CIFilter *filter = [CIFilter filterWithName:@"CIColorControls" keysAndValues: kCIInputImageKey, beginImage,@"inputSaturation", @0, @"inputContrast", @1, @"inputBrightness", @0, nil];

And get this:

Result http://imageshack.us/a/img689/5297/browserpreviewtmpd.jpg

How can I do this?

解决方案

You can use another couple CIFilters! You can take the top image and multiply it by the mask using CIMultiplyBlendMode, then add it to the bottom image using CIAdditionCompositing.

这篇关于将CIFiler应用于图像的蒙版部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 10:34