#import "GPUImagePrewittEdgeDetectionFilter.h"
|
|
@implementation GPUImagePrewittEdgeDetectionFilter
|
|
#if TARGET_IPHONE_SIMULATOR || TARGET_OS_IPHONE
|
NSString *const kGPUImagePrewittFragmentShaderString = SHADER_STRING
|
(
|
precision highp float;
|
|
varying vec2 textureCoordinate;
|
varying vec2 leftTextureCoordinate;
|
varying vec2 rightTextureCoordinate;
|
|
varying vec2 topTextureCoordinate;
|
varying vec2 topLeftTextureCoordinate;
|
varying vec2 topRightTextureCoordinate;
|
|
varying vec2 bottomTextureCoordinate;
|
varying vec2 bottomLeftTextureCoordinate;
|
varying vec2 bottomRightTextureCoordinate;
|
|
uniform sampler2D inputImageTexture;
|
uniform float edgeStrength;
|
|
void main()
|
{
|
float bottomLeftIntensity = texture2D(inputImageTexture, bottomLeftTextureCoordinate).r;
|
float topRightIntensity = texture2D(inputImageTexture, topRightTextureCoordinate).r;
|
float topLeftIntensity = texture2D(inputImageTexture, topLeftTextureCoordinate).r;
|
float bottomRightIntensity = texture2D(inputImageTexture, bottomRightTextureCoordinate).r;
|
float leftIntensity = texture2D(inputImageTexture, leftTextureCoordinate).r;
|
float rightIntensity = texture2D(inputImageTexture, rightTextureCoordinate).r;
|
float bottomIntensity = texture2D(inputImageTexture, bottomTextureCoordinate).r;
|
float topIntensity = texture2D(inputImageTexture, topTextureCoordinate).r;
|
float h = -topLeftIntensity - topIntensity - topRightIntensity + bottomLeftIntensity + bottomIntensity + bottomRightIntensity;
|
float v = -bottomLeftIntensity - leftIntensity - topLeftIntensity + bottomRightIntensity + rightIntensity + topRightIntensity;
|
|
float mag = length(vec2(h, v)) * edgeStrength;
|
|
gl_FragColor = vec4(vec3(mag), 1.0);
|
}
|
);
|
#else
|
NSString *const kGPUImagePrewittFragmentShaderString = SHADER_STRING
|
(
|
varying vec2 textureCoordinate;
|
varying vec2 leftTextureCoordinate;
|
varying vec2 rightTextureCoordinate;
|
|
varying vec2 topTextureCoordinate;
|
varying vec2 topLeftTextureCoordinate;
|
varying vec2 topRightTextureCoordinate;
|
|
varying vec2 bottomTextureCoordinate;
|
varying vec2 bottomLeftTextureCoordinate;
|
varying vec2 bottomRightTextureCoordinate;
|
|
uniform sampler2D inputImageTexture;
|
uniform float edgeStrength;
|
|
void main()
|
{
|
float bottomLeftIntensity = texture2D(inputImageTexture, bottomLeftTextureCoordinate).r;
|
float topRightIntensity = texture2D(inputImageTexture, topRightTextureCoordinate).r;
|
float topLeftIntensity = texture2D(inputImageTexture, topLeftTextureCoordinate).r;
|
float bottomRightIntensity = texture2D(inputImageTexture, bottomRightTextureCoordinate).r;
|
float leftIntensity = texture2D(inputImageTexture, leftTextureCoordinate).r;
|
float rightIntensity = texture2D(inputImageTexture, rightTextureCoordinate).r;
|
float bottomIntensity = texture2D(inputImageTexture, bottomTextureCoordinate).r;
|
float topIntensity = texture2D(inputImageTexture, topTextureCoordinate).r;
|
float h = -topLeftIntensity - topIntensity - topRightIntensity + bottomLeftIntensity + bottomIntensity + bottomRightIntensity;
|
float v = -bottomLeftIntensity - leftIntensity - topLeftIntensity + bottomRightIntensity + rightIntensity + topRightIntensity;
|
|
float mag = length(vec2(h, v)) * edgeStrength;
|
|
gl_FragColor = vec4(vec3(mag), 1.0);
|
}
|
);
|
#endif
|
|
#pragma mark -
|
#pragma mark Initialization and teardown
|
|
- (id)init;
|
{
|
if (!(self = [self initWithFragmentShaderFromString:kGPUImagePrewittFragmentShaderString]))
|
{
|
return nil;
|
}
|
|
self.edgeStrength = 1.0;
|
|
return self;
|
}
|
|
|
@end
|