0
votes
0answers
44 views

Detect square paper corner points using GPUImage

I want to detect corner points of paper. I am using GPUImage Library. Actually I am new to GPU Image. I tried its samples. But it works with camera. I want to apply GPUImageHarrisCornerDetectionFilter ...
0
votes
0answers
93 views

GPUImage : Applying filter with brush stroke

Currently i am working on a photo editing iOS application and i am using brad's GPUImage framework to process images. I have applied different blend modes and it is working perfect. But is that ...
3
votes
0answers
88 views

GPUImageHistogramFilter for a still image giving zero data

Very similar this answer, except I want to generate a histogram for a still image. Below is what I'm doing, and it's giving a histogram with all 0 data. Is there some trick to getting this working? ...
1
vote
1answer
227 views

GPUImage : YUV or RGBA impact on performance?

I'm working on some still image processing, and GPUImage is a really awesome framework (thank you Brad Larson!). I understand that : some filters can be done with only 1 component. In this case, ...
3
votes
2answers
77 views

Using GPUImageRGBFilter

I've trying to use the GPUImageRGBFilter but without success. I want to change each channel value, for instance: Red: 0.2 Green: 0.4 Blue: 0.3 How can I do this? Can anyone tell me how to use ...
0
votes
1answer
171 views

Convolution UIImage with GPUImage framework

I'm trying to use GPUImage3x3ConvolutionFilter of GPUImage framework but is not working. This is my code, I only get a white image. - (UIImage *)convolution:(UIImage *)inputImage{ ...
0
votes
1answer
332 views

GPUImage create a custom Filter that change selected colors

Using the amazing GPU image framework, I'm trying to create a custom filter using a custom fragment shader that passed some color vectors as uniforms, elaborate each fragment substituting a choosen ...
0
votes
0answers
262 views

OpenGL ES 2.0 plane morph/distortion effect GPUImage iOS

was playing a bit with awesome GPUImage framework and was able to reproduce some "convex"-like effects with fragment shaders. However, I'm wondering if it's possible to get some more complex plane ...
1
vote
1answer
695 views

How to implement instagram lux effect using GPUImage?

I mean, which filters (brightness, contrast, exposure, gamma, saturation, etc...) and which values do I need to use to achieve similar photo effect?
0
votes
0answers
191 views

GPUImage equivalent of cv::findContours

My app uses opencv's cv::findContours on a binary image. I now need to make it realtime. GPUImage has a cannyedge filter but I couldn't find anything related to findContours. Does GPUImage have ...
0
votes
0answers
101 views

implementing a lineWidthFilter for GPUImage

I'm trying to implement a lineWidthFilter for GPUImage, so after getting the edge-pixels and their gradients (non-edge pixels have 0 as their value, edge pixels have gradient/360 as their value) I ...
0
votes
0answers
144 views

Use GPUImageBuffer to creat a buffer with size of 6

I am using the GPUImage Framework to my project. I create a class named GPUImageSixInputFilter, similar to GPUImageTwoInputFilter which can have a GPUImageFilter with six input. What I want to do is, ...
0
votes
1answer
1k views

GPUImage: GPUImageToneCurveFilter Not Working

I have managed to use the GPUImage in my app now and tried putting filters in my photos on button click, but there another issue. GPUImageFilter *selectedFilter; if (sender.tag == 1) { ...
0
votes
1answer
359 views

GPUImage ChromaKeyFilter is keying out my entire image

Just got my hand on this GPUImage framework everyone seems to be talking about.. Anyway, I'm trying to do a filter chain - the first two filters produce the expected result when chained together, but ...
1
vote
1answer
336 views

How to skew the image? [closed]

When I press and drag the red rounded corners that corner only increased depending on the X, Y not for rest of the image. How to handle this problem. Please help me. Thanks in advance
2
votes
2answers
347 views

Get rectangle out of array of points

Using GPUImage, I am able to detect corners of a book/page in an image. But sometimes, it will pass more than 4 points, in which case I will need to process and figure out the best rectangle out of ...
0
votes
1answer
405 views

GPUImage Framework (GPUImageStillCamera) implementation for iPad

i have used GPUImage framework, while run example code for SimplePhotoFilter (i have used GPUImageSketchFilter) in iPad am getting some dots over the filtered image, like this:
3
votes
1answer
2k views

GPUImage: blending two images

I was using GPUImage framework (some old version) to blend two images (adding border overlay to a certain image). After I have updated to latest framework version, after applying such a blend, I get ...
0
votes
0answers
308 views

Real memory utilization Vrs “Live” Memory in XCODE tools

Our application uses the GPUImage Framework to process images. We're utilizing just about every filter and blend mode within the framework. We're allocating and releasing memory as we should. But, in ...