GPUImage is an open source iOS framework for GPU-based image and video processing.
24
votes
1answer
790 views
luma key (create alpha mask from image) for iOS
I'm building an app that allows people to upload an image of themselves against a white background and the app will create a silhouette of the person.
I'm having a hard time keying out the ...
15
votes
1answer
2k views
GPUimage port for android
Has anyone ported this to android yet? More the framework than
the shaders. Stuff like bringing camera data into openGL.
I have worked with it on iOS and it is very fast. Any help is much appreciated.
...
5
votes
4answers
2k views
How to add external framework GPUImage framework? [closed]
I am developing iPhone application using iOS. I need to add GPUImage framework, i followed this url for adding purpose. http://www.sunsetlakesoftware.com/2012/02/12/introducing-gpuimage-framework
...
5
votes
1answer
136 views
How can i get UIImage from GPUImageView
I am using GPUImageView library in my project where it is using GPUImageView and i have added filters like contrast and other image effects like sepia etc on that GPUImageView , everything is good but ...
5
votes
2answers
195 views
Cannot play video recorder by GPUImage
I am using GPUImage library to record a video to a file on filesystem. I save it as m4v file. This is the code I'm using:
NSString *pathToMovie = [NSHomeDirectory() ...
4
votes
1answer
277 views
What does TwoPassFilter GPUImage actually do?
I am trying to re-create the GPUImageTwoPassFilter from GPUImage(ios) for Android. I am working off the work done here for an Android Port of GPUImage. The port actually works great for many of the ...
4
votes
1answer
98 views
GPUImageView Black When ViewController Reloaded
Using the code below (in viewDidLoad), when I first segue from another view to this still camera view (a button press), everything works fine. Then I send out a delegate and have this view dismissed ...
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 ...
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 ...
3
votes
1answer
562 views
GPUImage apply filter on small image but display large image
I am working on an app that computes some points of interests from the live camera feed. The algorithm that I have for this is quite slow and I am therefore applying the processing on a small image ...
3
votes
1answer
220 views
GPUImageGaussianSelectiveBlurFilter - but the opposite
I'm currently using Brad Larson's excellent GPUImage framework to create an iPhone-based app, and I want to process a circular area in the centre of the camera input so that section is blurred and the ...
3
votes
1answer
130 views
“The native class hasn't been loading” error with my bindings
I'm trying to create bindings for GPUImage project, but none of binded classes is working.
For example, GPUImageView:
In ObjC it's declared like this (header in git):
@interface GPUImageView : ...
3
votes
1answer
146 views
GPUImageMovieWriter frame presentationTime
I have a GPUImageColorDodgeBlend filter with two inputs connected:
A GPUImageVideoCamera which is getting frames from the iPhone video camera.
A GPUImageMovie which is an (MP4) video file that I ...
3
votes
0answers
50 views
Convert CATransform3D into CIVector's for CIPerspectiveTransform, replace UIGetScreenImage
Is it possible to convert a CATransform3D into a set of CIVectors in order to transform a UIImage with a CATransform3D?
I believe that is now finally possible to replace UIGetScreenImage()'s ability ...
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?
...
3
votes
0answers
155 views
GPUImageMovieWriter without the camera
I'm new to GPUImage, but I think that it is really nice: good work Brad. I love the way the filters chain together so cleanly.
GOAL
I'm trying to wire up the following:
* create an openGL scene
* ...
3
votes
0answers
135 views
Does GPUImageMovieWriter support AVFileTypeMPEG4 with audio?
GPUImage has allowed me to manipulate my video files incredibly efficiently in just the way I desire, but only if I use AVFileTypeQuickTimeMovie when I specify the fileType of the GPUImageMovieWriter.
...
2
votes
1answer
209 views
GPUImage issue iPhone
I am using GPUImage framework in iphone to add some filters in a video file. The filters are being applied successfully. But the issue i am facing is that the setCompletionBlock is getting called two ...
2
votes
2answers
2k views
“GPUImage.h” not found
I am trying to set up GPUImage in a project but I am not able to track down why I'm getting the error: "GPUImage.h" not found. I have added the framework, setup the target dependency, added the Header ...
2
votes
2answers
183 views
Transparent GPUImageView?
I am using a GPUImageView inside my iOS application. I want that the GPUImageView have a transparent background.
I tried setBackground:[UIColor clearColor]
It does not work.
Any workarounds?
Regards
2
votes
2answers
188 views
Does the input texture to a fragment shader change as the shader runs?
I'm trying to implement the Atkinson dithering algorithm in a fragment shader in GLSL using our own Brad Larson's GPUImage framework. (This might be one of those things that is impossible but I don't ...
2
votes
1answer
455 views
GPUImage: How to apply different filters to an image, scale them down and tile results to the output image
I'm new to the GPUImage library.
I'm using it to obtain frame from the camera and filter them in real-time. I'm using different filter parameters for the filter I am developing.
I figured out how ...
2
votes
2answers
126 views
GPUImage Camera Takes Five Seconds
On an iPad Retina Display (the device, not simulator), I had first used Apple's AVFoundation to take still pictures, but I switched to GPUImage because I wanted the ChromaKeyBlend feature. Got that ...
2
votes
1answer
151 views
GPUImage two-pass filter - second frag shader never runs?
It's my impression (and the answer to this question seems to confirm it) that I can subclass from GPUImageTwoPassFilter to effectively run two fragment shaders in succession on an image but keep all ...
2
votes
1answer
38 views
GPUImageStillCamera Output Resolution Limited
On an iPad 3 Retina with iOS 6.1, I initialize my still camera with:
stillCamera = [[GPUImageStillCamera alloc] initWithSessionPreset:AVCaptureSessionPresetPhoto ...
2
votes
1answer
123 views
GPUImageAlphaBlendFilter - merge Two images over an image
I want to merge two images over a image using GPUImageAlphaBlendFilter. How can I do this?
And also i want to give effects to that two images separately..Is it possible??!!
2
votes
0answers
94 views
How to blend a smaller texture at certain coordinate of the source picture (a still image) using GPUImage
i'm using GPUImage library and i wish to put a small logo or text at certain coordinate of a still image.
i tried using GPUImageSourceOverBlendFilter, it blends the 2nd picture into source picture ...
2
votes
1answer
137 views
normalizeColor in Brad Larson's Threshold filter
That might be easy to understand, but I don't get the use of the normalizeColor function in Brad Larson's GPUImage. You find it for e.g. in the colorObjectTracking example under Threshold.fsh:
vec3 ...
2
votes
1answer
228 views
Reusing filter Causes black screen in GPUImage
I creating set of GPUImageToneCurveFilter and storing in an array.
First i am creating preview video view for all filters using GPUImageVideoCamera after selecting any filter i am trying to add that ...
2
votes
0answers
577 views
Create Sketch effect to photos using Brad Larson GPUImage in Obj C
Hi I would like to try sketch effect on photos using Brad Larson's GPUImage sdk in iOS. I am trying to create sketch effect like this
But the sketch effect i get is like this
I am using ...
2
votes
0answers
544 views
How can I calculate the crop size (rect) of the UIImage with different resolution
In my app, I have a 'Capture from Camera' function, I am using GPUImageFramework by Brad Larson (ty) , GPUImageStillCamera when capturing still images.
stillCamera = [[GPUImageStillCamera alloc] ...
2
votes
0answers
519 views
Can i set frame on video with GPUImage?
I have one local video file, Now i have applied filters with help of GPUImage library,
here is code to make filtered video with GPUImage
movieFile = [[GPUImageMovie alloc] initWithURL:sampleURL];
...
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 ...
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, ...
1
vote
1answer
115 views
Is there a way to use more than 64 uniform vectors in a fragment shader? or alternative?
I use GPUImage in my project. and I want to pass an array with 2304 integer to the fragment shader. but OpenGL ES 2.0 on the PowerVR SGX is limit only 64 uniform vectors for fragment shader.
1
vote
1answer
81 views
“'OpenGL/OpenGL.h' file not found” triggered by GPUImage cocoapod in my iOS project
Despite the fact that I'm installing it in a iOS project, it looks like GPUImage is demanding a MacOSX library. I'm getting this error:
...
1
vote
3answers
551 views
Apply GPUImage filter to a UIView
I've a problem. I need to apply a filter like Pixelate or Blur to an entire UIView.
Like the eBay iPad app.
I thought to use GPUImage but I don't know how to do it.
There is a way to apply a filter ...
1
vote
1answer
64 views
GPUImage: Normalize the blur size of GPUImageGaussianSelectiveBlurFilter across multiple image sizes
I want to keep a relative constant blur size across images of different resolutions using GPUImageGaussianSelectiveBlurFilter of Brad Larson's GPUImage.
Say I have two images for sizes 1000x1000 and ...
1
vote
1answer
44 views
Something from GPUImageFilters remains in memory even after deallocation
I'm using GPUImage to do a bunch of image processing both in real time and on static images, I noticed that after churning through ~100 thumbnail images each of which has slightly different image ...
1
vote
1answer
53 views
Aliasing issue with GPUImageView
I get weird black aliasing on a transparent text GPUImagePicture blended with a base GPUImagePicture with a GPUImageView as the final target. This is what I'm doing:
textOverlay = [[GPUImagePicture ...
1
vote
1answer
84 views
When should I call CVPixelBufferLockBaseAddress and CVPixelBufferUnlockBaseAddress?
In iOS6, I'm using OpenGL to do some rendering on AVFoundation video frames. I've seen a lot of example code that makes use of CVPixelBufferLockBaseAddress and CVPixelBufferUnlockBaseAddress, but ...
1
vote
1answer
143 views
Can't compile examples for brad larson's GPUImage [closed]
Okay this is really dumb I know, but I just downloaded GPUImage from github and I can't get any of the Xcode example projects to build without errors. I'm sure it's something dumb, like a header ...
1
vote
1answer
232 views
GPUImage Green Screen
I am trying to do a green screen effect using GPIImage. The effect I am trying to achieve is to play a movie of curtains opening and replace the white part of the movie with the image. This will ...
1
vote
2answers
182 views
Circular White Pinch Gesture Overlay commonly used for Blurring Images in iOS
I have implemented the ability to blur images in my iOS app using the pinch gesture, however I would like to implement a circular white overlay that is commonly used as a reference point with the ...
1
vote
1answer
303 views
Image 90 degrees rotated AVCam
I've looked through tons of questions here in Stackoverflow and none of them solved my problem.
So, I'm using Apple's AVCam sample:
...
1
vote
2answers
525 views
How do I modify a GPUImageGaussianSelectiveBlurFilter to operate over a rectangle instead of a circle?
I have used the GPUImage framework for a blur effect similar to that of the Instagram application, where I have made a view for getting a picture from the photo library and then I put an effect on it. ...
1
vote
2answers
519 views
iOS: GPUImage Library and VBO
I am making use of Brad Larson's wonderful GPUImage library for image manipulation. So far, it's been great. However, I'm trying to add a filter to allow Mesh Deformation and running into quite a bit ...
1
vote
0answers
21 views
GPUImage and Voronoi filter
I'm trying to make the Voronoi filter work on my UIImage and no matter what I do - I can't make it work....
Here's my code:
GPUImageJFAVoronoiFilter *jfaVoronoiFilter = [[GPUImageJFAVoronoiFilter ...
1
vote
0answers
27 views
Proper way to rotate UIImage with GPUImage
I want to rotate a large UIImage using GPUImage because it's so much faster than core graphics, at least on iOS devices.
Here's what I'm doing:
GPUImagePicture *src = [GPUImagePicture alloc] ...
1
vote
0answers
51 views
GPUImage : Apply filer to existing video file
I was trying to use video filters of GPUImage framework. I followed Filtering and re-encoding a movie tutorial. It giving me error Unknown type name GPUImageRotationFilter. So i tried to apply a ...



