This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// FWKSketchFilter.h | |
// LineEngraver | |
// | |
// Created by Viktor Goltvyanytsya on 8/4/16. | |
// http://www.fwkit.com | |
// | |
// Ported from https://github.com/BradLarson/GPUImage/blob/master/framework/Source/GPUImageSketchFilter.m | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GPUImageTextureInput+CIImage.h | |
// GPUImage | |
// | |
// Created by Sam Soffes on 3/4/14. | |
// Copyright (c) 2014 Sam Soffes. All rights reserved. | |
// | |
#import "GPUImageTextureInput.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "GPUImageFilterGroup.h" | |
@class GPUImageSaturationFilter; | |
@class GPUImageGaussianBlurFilter; | |
@class GPUImageSolidColorGenerator; | |
@class GPUImageAlphaBlendFilter; | |
typedef enum { | |
GPUImageIOSImageEffectTypeLight, | |
GPUImageIOSImageEffectTypeExtraLight, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GPUSaturationExposureGammaRGBFilter.h | |
// bonnemine | |
// | |
// Created by Jean-Philippe SARDA on 12/17/13. | |
// Copyright (c) 2013 My Little Paris. All rights reserved. | |
// | |
#import "GPUImageFilter.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad { | |
[super viewDidLoad]; | |
self.videoCamera = [[GPUImageVideoCamera alloc] initWithSessionPreset:AVCaptureSessionPreset640x480 cameraPosition:AVCaptureDevicePositionFront]; | |
self.videoCamera.outputImageOrientation = UIInterfaceOrientationPortrait; | |
// self.avatarView is a non full screen GPUImageView instance | |
// created in Storyboard | |
[self.videoCamera addTarget:self.avatarView]; | |
[self.videoCamera startCameraCapture]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GPUImageLittlePlanetProjectionFilter.h | |
// | |
// Created by Toshiyuki Suzumura on 2013/07/02. | |
// Copyright (c) 2013 Toshiyuki Suzumura. All rights reserved. | |
// | |
#import "GPUImageFilter.h" | |
@interface GPUImageLittlePlanetProjectionFilter : GPUImageFilter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ASMBlurredImageBackgroundView.h | |
// Created by Andy Molloy on 4/19/13. | |
// | |
// | |
#import <UIKit/UIKit.h> | |
@interface ASMBlurredImageBackgroundView : UIView | |
@property (nonatomic, assign) double constant; |