learn GPUImage 自定义实时滤镜

博客地址已迁移到:http://devthinking.com

引入GPUImage库

方法一,工程中以依赖的形式加入GPUImage

跟我一起学GPUImage吧,每天学习一点,用好这个库!

  • git clone 下来GPUImage
git clone https://github.com/BradLarson/GPUImage.git

  • 把framework文件夹拷贝到你工程目录下面,把GPUImage.xcodeproj拖入到工程中;
  • 选中工程名 -> targets -> 工程名 -> BuildPhases -> Target Dependencies, 点加号,把GPUImage(GPUImage)加上;
  • 选中工程名 -> targets -> 工程名 -> General -> Linked Frameworks and Libraries,点加号,把libGPUImage.a加上;
  • 选中工程名 -> targets -> 工程名 -> Build Settings -> Header Search Paths, 把GPUImage/source中的相对路径加上,后面选recursive。

这样整个GPUImage 库就导入进来了,下一章节继续写如何在自定义camera中使用GPU Image。

方法二,pod 安装GPUImage

pod 'GPUImage'
pod install

用自定义相机加上GPUImage实时滤镜

新建一个Camera, 继承自GPUImageStillCamera(如果只想用静态而不拍摄视频)

里面主要负责自定义曝光,对焦,保存拍照完成后的图片, init方法可以这样写:

- (id)initWithSessionPreset:(NSString *)sessionPreset cameraPosition:(AVCaptureDevicePosition)cameraPosition {
if (!(self = [super initWithSessionPreset:sessionPreset cameraPosition:cameraPosition]))
{
return nil;
}

_stillImageOutput = [[AVCaptureStillImageOutput alloc] init];
[_stillImageOutput setOutputSettings:@{ AVVideoCodecKey : AVVideoCodecJPEG }];
[self.captureSession addOutput:_stillImageOutput];
[self setFlashMode:AVCaptureFlashModeOff];
return self;
}

先调用父类的init方法,再添加一个AVCaptureStillImageOutput,用于存储静态图片, 这个是能保存原图的方法,如果只想保存加上滤镜后的图片,在controller里面可以这样调:

[self.cameraManager capturePhotoAsImageProcessedUpToFilter:_groupFilter withCompletionHandler:^(UIImage *processedImage, NSError *error) {
        [self captureImageDidFinish:processedImage];
    }];

返回的processedImage就是加上_groupFilter滤镜效果的图。

自定义一个cameraView

写一个cameraView, 可以分成三部分,topView, 中间显示的preView, 和下面的bottomView

再写一个CameraViewController

在viewDidLoad里面这样写

if ([self.cameraManager initWithSessionPreset:AVCaptureSessionPresetPhoto cameraPosition:AVCaptureDevicePositionFront]) {
GPUImageOutput<GPUImageInput> *filter = [[GPUImageHueFilter alloc] init];
[self.cameraManager addTarget:filter];
GPUImageView *filterView = [[GPUImageView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT - CameraBottomHeight - CameraFilterHeight)];
[filter addTarget:filterView];
self.cameraManager.outputImageOrientation = UIInterfaceOrientationPortrait;
[self.cameraManager startCameraCapture];
[self.view addSubView:self.cameraView];
[self.cameraView.preview addSubview:filterView];
}

cameraManager为继承自GPUImageStillCamera的自定义相机(想处理视频请继承自GPUImageVideoCamera),GPUImageHueFilter 为其中一个GPUImage自带的滤镜,filterView为实时预览的view, 把它加在cameraView中间的preview上。
这样打开相机后,实时预览里面应该会有绿色的Hue的效果。

自定义相机加上切换滤镜效果

滤镜视图采用collectionView,只用一行,水平滚动

写一个cameraFilterView, .h文件:

#import <UIKit/UIKit.h>

@protocol XKCameraFilterViewDelegate;

@interface XKCameraFilterCollectionView : UICollectionView <UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>

@property (strong, nonatomic) NSMutableArray *picArray;
@property (strong, nonatomic) id <XKCameraFilterViewDelegate> cameraFilterDelegate;
@end

@protocol XKCameraFilterViewDelegate <NSObject>

- (void)switchCameraFilter:(NSInteger)index;
@end

cameraFilterCollectionView的实现文件:

#import "XKCameraFilterCollectionView.h"

@implementation XKCameraFilterCollectionView

- (id)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout{
self = [super initWithFrame:frame collectionViewLayout:layout];
if (self) {
self.delegate = self;
self.dataSource = self;
}
return self;
}

#pragma mark - delegate
#pragma UICollectionView datasource
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return [_picArray count];
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *identifier = @"cameraFilterCellID";
[collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:identifier];
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, cell.width, cell.height)];
imageView.image = [_picArray objectAtIndex:indexPath.row];
[cell addSubview:imageView];
cell.backgroundColor = [UIColor orangeColor];

return cell;
}

#pragma mark collecton flowlayout delegate
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
return CGSizeMake((WIDTH - 4) / 5, (WIDTH - 4) / 5);
}

#pragma mark collectionView delegate
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
[_cameraFilterDelegate switchCameraFilter:indexPath.row];
}

-(BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}

@end

写上flowlayout 的delegate方法,返回每一个cell的宽高,系统自动计算间距,再把collectionView的datasource和delegate的几个方法实现。
在controller中初始化:

- (void)addCameraFilterView {
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
_cameraFilterView = [[XKCameraFilterCollectionView alloc] initWithFrame:CGRectMake(0, HEIGHT - CameraBottomHeight - (WIDTH-4)/5 - 4, WIDTH, (WIDTH-4)/5) collectionViewLayout:layout];
NSMutableArray *filterNameArray = [[NSMutableArray alloc] initWithCapacity:CameraFilterCount];
for (NSInteger index = 0; index < CameraFilterCount; index++) {
UIImage *image = [UIImage imageNamed:@"filter0"];
[filterNameArray addObject:image];
}
_cameraFilterView.cameraFilterDelegate = self;
_cameraFilterView.picArray = filterNameArray;
[self.view addSubview:_cameraFilterView];
}

在controller中实现XKCameraFilterViewDelegate的方法:

#pragma mark cameraFilterView delegate
- (void)switchCameraFilter:(NSInteger)index {
[self.cameraManager removeAllTargets];
switch (index) {
case 0:
_filter = [[GPUImageBilateralFilter alloc] init];
break;
case 1:
_filter = [[GPUImageHueFilter alloc] init];
break;
case 2:
_filter = [[GPUImageColorInvertFilter alloc] init];
break;
case 3:
_filter = [[GPUImageSepiaFilter alloc] init];
break;
case 4: {
_filter = [[GPUImageGaussianBlurPositionFilter alloc] init];
[(GPUImageGaussianBlurPositionFilter*)_filter setBlurRadius:40.0/320.0];
}
break;
case 5:
_filter = [[GPUImageMedianFilter alloc] init];
break;
case 6:
_filter = [[GPUImageVignetteFilter alloc] init];
break;
case 7:
_filter = [[GPUImageKuwaharaRadius3Filter alloc] init];
break;
default:
_filter = [[GPUImageBilateralFilter alloc] init];
break;
}
[self.cameraManager addTarget:_filter];
if (_gpuImageView != nil) {
[_gpuImageView removeFromSuperview];
}
[_filter addTarget:_gpuImageView];
[self.cameraView.preview addSubview:_gpuImageView];
}

点击每个滤镜,会有实时预览效果,filterView可以左右滚动。

后记

文中有不对的地方,欢迎大家斧正,后续还会有更新(还有多种滤镜的叠加,如何自己用photoshop制作滤镜,当然你首先得会一点photoshop)。我的[新浪微博](<http://weibo.com/dulingkang/home?topnav=1&wvr=6&sudaref=passport.weibo.com), github 上这个仓库已全部改为swift,线上的产品是爱拍美图,GPUImage使用时有什么问题,欢迎大家多交流!

微信公众号

开发者思维 devthinking

QQ交流群:295976280

iOS交流群(一)群二维码.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容