GPUImage is an open source iOS framework for GPU-based image and video processing.

learn more… | top users | synonyms

0
votes
0answers
32 views

How to recreate cvCalcBackProject in GPUImage

I need to understand how I can recreate the cvCalcBackProject of OpenCV in GPUImage. I generate an histogram using GPUImageHistogramFilter but really don't understand how I can look at the same time ...
1
vote
1answer
225 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, ...
0
votes
2answers
184 views

GPUImage CannyEdgeDetectionFilter with white edges?

I'm using GPUImage from the Git repository to apply some filters to images. I notice that the edge detection filters (I'm using the CannyEdgeDetectionFilter specifically) paint white edges on black ...
1
vote
0answers
98 views

GPUImage background subtraction iOS

I start capturing the camera with startCameraCapture and using setFrameProcessingCompletionBlock for take a GPUImageOutput (my background image). Now I want for each frame to subtract my background ...
0
votes
0answers
37 views

Filter a frame using a GPUImageHistogramFilter

I need to create a dynamic tracking object algorithm based on the object color (not simple blue, green, etc.. colors). My idea is to sample the object color with a GPUImageHistogramFilter (selecting ...
2
votes
1answer
147 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
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??!!
1
vote
0answers
156 views

Recording a video with audio using GPUImageMovieWriter without jerkiness at start and end of recording?

I am using GPUImage framework to record multiple videos one after other in close intervals with having various filters enabled in real time using GPUImageVideoCamera and GPUImageMovieWriter. When I ...
0
votes
0answers
66 views

How to extact some parts of a video at exact timeintervals in ios

I am using GPUImage framework to record a video from camera. I want to extact multiple videos from the recorded video according to saved NSTimeIntevals. What I am doing is: When view loads I start ...
2
votes
2answers
184 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 ...
3
votes
2answers
76 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 ...
-1
votes
1answer
117 views

GPUImageview disappear after capture it

I try to capture GPUImageView by using this link but after I capture it GPUImageview is disappear, but if it is UIImageView it just working fine.
4
votes
1answer
274 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 ...
1
vote
0answers
117 views

GPUImage 2 video inputs

I am trying to blend 2 videos together using GPUImageAlphaBlendFilter. The ouput looks like what I want but there are some frames are put out of their time. For example, a frame at time 0.32 is put at ...
0
votes
1answer
195 views

Record OpenGL View with GPUImageMovieWriter

I'm trying to create an OpenGL view that will record with my app. I'm trying to record the view with GPUImageMovieWriter and GPUImageUIElement as such: self.imageUIElement = [[GPUImageUIElement ...
0
votes
0answers
98 views

Change image size in GPUImageView

i'm using GPUImageView to create camera custom. But when i capture, the images size is "384x384". So, how i can capture images with size standard (ex: 1536.000000 x 2048.000000). Thanks !
0
votes
0answers
262 views

GPUImage overlay live video with corner detection

Trying to get a basic filter working with GPUImage, but not sure how to properly set it up to display the crosshairs over the live video feed, when detecting corners. I tried adding the crosshairs to ...
0
votes
0answers
23 views

How to modify GPUImageGaussianSelectiveBlurFilter to show a rectangular area rather than circular [duplicate]

Possible Duplicate: How do I modify a GPUImageGaussianSelectiveBlurFilter to operate over a rectangle instead of a circle? There's a similar question at How do I modify a ...
0
votes
1answer
178 views

I want to make a more than two input texture filter with GPUImage. but I got a black output

I want to make a new filter like GPUImage's GPUImageTwoInputFilter. here is my code . A base class named IFFourInputFilter, it is likely GPUImageTwoInputFilter. #import "IFFourInputFilter.h" ...
0
votes
0answers
95 views

Ultraviolet Filter Effect Simulation

I need to simulate Ultraviolet effect in my iOS app. I tried applying Histogram Filter -> Saturation -> Grey Scale. But that didnt work. Can anybody suggest me how to get this working. Can I use ...
1
vote
0answers
187 views

GPUImage's GPUImageOpacityFilter not behaving as expected, doesn't change alpha channel

I'm trying to do an Overlay Blend of a stock image with the output of the camera feed where the stock image has less than 100% opacity. I figured I could just place a GPUImageOpacityFilter in the ...
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{ ...
1
vote
0answers
120 views

GPUImage crash when switching to background while processing a video file

I am having some problems with GPUImage while switching to the background. In my app I don't capture video using the GPUImage classes. The user selects a video from the roll and then my app applies 3 ...
0
votes
1answer
396 views

How to generate an histogram using iOS GPUImage?

Working on https://github.com/luisespinoza/LEColorPicker project, I am trying to generate an histogram UIImage from an arbitrary input UIImage using the project GPUImage ...
1
vote
0answers
294 views

GPU Image - Combine two GPUImageFilterGroups from two distinct set of cases

I'm building a Photo App for the iPhone using GPUImage by Brad Larson and based on the DLCImagePickerController by GoBackSpaces (which helped me learn lots of stuff so far), but I'm stuck with one of ...
0
votes
1answer
324 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
1answer
207 views

Gpu image photo app crash

I am using GPU image open source framework for image effects. The problem is when i am trying to apply filters regularly on an image the app gives me a memory warning and then crashes. Here is the ...
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 ...
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 ...
0
votes
1answer
206 views

Is there a memory leak via texture2D in a fragment shader on ios?

I'm using the GPUImage library by Brad Larson, and I think I've found an interesting problem. The following shader program executes just fine: NSString *const kDilationFragmentShaderString = ...
1
vote
1answer
133 views

multiple Single-Channel outputs in GPUImage and OpenGL ES

I am trying to use the GPUImage library for image processing (not for image output to screen). By default, the library outputs one BGRA texture. I would like to instead output multiple ...
0
votes
0answers
144 views

Duplicating simple effect from Photoshop in CoreImage

I don't think this is a terribly difficult effect, but I'm having trouble translating all the examples I find in Quartz Composer into code that could be used in an iOS app. I've found ...
2
votes
0answers
93 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 ...
0
votes
1answer
383 views

GPUImage memory warnings

I am facing a strange problem while applying GPUImage Filters on image. I am trying to apply different filters on an image but after applying 10-15 filters it gives me memory warning and then crashes. ...
1
vote
3answers
544 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
229 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
0answers
230 views

GPUImage Video with transparency over UIView

I am working on an iOS project that uses AV-Out to show contents in a 1280x720 window on a second screen. I have a MPMoviePlayerController's view as background and on top of that different other ...
2
votes
1answer
450 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 ...
0
votes
0answers
261 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 ...
3
votes
0answers
154 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 * ...
0
votes
0answers
36 views

Mobile app Scout mob stache cam in xcode [closed]

How did the deals app Scout Mob implement the stache cam feature n their mobile app?
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
1
vote
0answers
278 views

Create video filter using GPUImage framework for blw file exported from Photoshop

My task on project is to create GPUImage live video and image filter. I have Black and white file exported from Photoshop. I can read values from that file But can not find appropriate filter to ...
1
vote
1answer
136 views

GPUImage. Application crashes when trying to save photo second time

After I made [_stillCamera pauseCameraCapture]; I want to save captured photo. Code: [_stillCamera capturePhotoAsJPEGProcessedUpToFilter:_filter withCompletionHandler:^(NSData *processedJPEG, NSError ...
0
votes
0answers
41 views

GPUImageRawDataOutput colorAtLocation: inaccurate?

I have a GPUImageView and basically I want the user to put on the view and get the color at that location. I followed color tracking exmaple project and implemented it and it wasn't acurate. The color ...
0
votes
0answers
81 views

detect flash (light) between two frames in iOS using GPUImage

I am able to get a couple of frames from my video feed using GPUImage. One of the frames has a bright flash in it, the other does not. I would like to now detect whether a) there is a flash (change ...
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 ...
3
votes
0answers
134 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. ...
1
vote
1answer
688 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?
1
vote
1answer
258 views

Using GPUImage to extract frames from video

I am using GPUImage, and would like to extract a few frames from the video feed [GPUImageVideoCamera] and save as images to review when a button is clicked. What is the best way to do this?