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

learn more… | top users | synonyms

0
votes
0answers
13 views

Is it possible to encapsulate a GPUImage filter into a CIFilter?

I need to use a core image filter (CIFilter) in a certain method of iOS 7 (so I can't be more specific as it is under NDA). However, there is not a CIFilter which provides the filter I want to use. So ...
0
votes
0answers
11 views

“imageFromCurrentlyProcessedOutput” different from GPUImageView preview

So the results from imageFromCurrentlyProcessedOutput is different from my preview GPUImageView only when I use GPUImageDifferenceBlendFilter. Any ideas? My current setup: Image 1 -> ...
0
votes
0answers
20 views

Starting/Stopping Chained GPUImage Filters (e.g. Blur)

For a still image camera app, I can use other filters (B&W, ChromaKeyBlend) in real-time for a preview of what will be captured, but I am interested in chaining a blur filter which I can somehow ...
1
vote
1answer
17 views

Apply Live GpuImage on CameraView

i´m currently working on a camera filter app which should use the GPUImage framework. I already got the custom camera working, now i want to apply only one filter on the uiview that i got. So the ...
0
votes
0answers
15 views

EAGLSharegroup like functionality for cross platform developement in c++ openGL

I am trying to use a c++ port of the GPUImage library in a cross-platform cocos2d-x game. Both GPUImage and cocos2d-x create their own OpenGL context to perform operations on the GPU, and this causes ...
1
vote
0answers
32 views

GPUImage: Detecting average luminosity of multiple rectangular sub regions

I am using GPUImage to process incoming video, and each frame I would like to determine the average luminosity of many rectangular subregions of the incoming image for hit detection purposes in a ...
-1
votes
0answers
21 views

Limiting overlay to a fixed position [closed]

I am using GPUImage framework to add an overlay for a video capturing app which is working fine but the overlay is covering the whole screen. I just want the overlay to cover a fixed and a fixed ...
2
votes
1answer
27 views

GPUImage: Reducing color depth

I would like to reduce the color depth of input video and images (for example, to 16bit) when using GPUImage on iOS, and was just curious if there is a simple way to do this using existing filters. ...
1
vote
1answer
66 views

GPUImage: How to determine average pixel value for given rectangle in processed image

I am using GPUImage to process incoming video and I would like to then consider a given square subregion of the image and determine the average pixel value of the pixels in that region. Can anyone ...
0
votes
1answer
63 views

Convert a black & white image to a transparent & white image in GPUImage? RGB -> Alpha basically

I got a black and white image from the edge detection filter in GPUImage, where white represents the edges, and the majority of the image contents is black, nontransparent. The problem is, I want to ...
0
votes
0answers
26 views

Using GPUImageMovieWriter to record video of changing filters on a still image?

The only documentation I can find for the use of GPUImageMovieWriter involves writing from a video source, but I need to take a still image and generate a video by varying the parameters of a ...
1
vote
0answers
30 views

Using the GPUImageFilter library in android

i m new to android and after having long search and also tried some java code for implement filter effect like the instagram so going with java code filter effect are working but too slow,so week ...
0
votes
0answers
46 views

GPUImage + Lot of audio noise during video recording

I am recording video using GPUImage Framework and all is done well but when playing recorded video, i am getting lots of background noise. how can i remove or reduce/remove this background noise? ...
1
vote
0answers
42 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 ...
0
votes
0answers
12 views

Getting the right coordinates of the visible part of a UIImage inside of UIScrollView

I have a UIImage which is inside a UIScrollView so I can zoom-in and zoom-out, crop, move around, etc. How do I get the coordinates of the visible part of the UIImage inside the UIScrollView. I want ...
0
votes
1answer
43 views

Maintaining array order with multiple faces using CIDetector Face Detection - iOS

I want to maintain the order of the NSArray I get back from CIDetector so I can tween the frames I draw in the camera view using an animation block. The problem is the order of faces is often ...
0
votes
0answers
56 views

White overlay on top of GPUImageGaussianSelectiveBlurFilter to show where blur is - GPUImage

I want to add a white overlay to the blurred area of GPUImageGaussianSelectiveBlurFilter, and a custom filter group I built by slightly modifying GPUImageGaussianSelectiveBlurFilter to make rotational ...
0
votes
1answer
68 views

Rotate GPUImageTiltShiftFilter - GPUImage

I want a non-horizontal GPUImageTiltShiftFilter rotation. I want to rotate it to an arbitrary rotation angle. I also want the filter to be fast it can be rotated with a UI with a ...
1
vote
1answer
176 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: ...
2
votes
1answer
69 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 ...
0
votes
1answer
79 views

GPUImageAlphaBlendFilter realtime processing from GPUImageStillCamera source

I am using the GPUImage library and I'm trying to blend two images in realtime, and display them on a GPUImageView. I am trying to alpha-blend plain camera input, with a filtered version of it. Here ...
0
votes
1answer
129 views

GPUImage render to OpenGL ES texture does not work

I would like to render a video in an OpenGL ES texture so that I can apply this texture to a 3D surface in my iOS program. To do that I'm using GPUImage, but it does not work, no texture seems to be ...
1
vote
0answers
70 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] ...
2
votes
1answer
163 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
0answers
150 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 ...
3
votes
0answers
88 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 ...
0
votes
0answers
44 views

crop AVCaptureVideoPreviewLayer and apply color effect

I have cameraView using AVFoundation framework. When i alloc AVCaptureVideoPreviewLayer it display videoStream. How to apply crop to some portion of this AVCaptureVideoPreviewLayer layer and apply ...
0
votes
0answers
69 views

GPUimageVideoCamera for android

I am using GPUImage library to compress a video in my iOs app (GPUimageVideoCamera) https://github.com/BradLarson/GPUImage/ I have worked with it on iOS and it is very fast I want to do the same in ...
1
vote
0answers
29 views

GPUImageView Integration in my project

What I am trying to do is this. - (void)viewDidLoad { [super viewDidLoad]; NSURL *url2 = [[NSBundle mainBundle] URLForResource:@"NAN" withExtension:@"mov"]; GPUImageMovie *movie2 = ...
0
votes
0answers
69 views

iOS - GPUImage - How can I return a small subimage inside GPUImageHarrisCornerDetectionFilter?

I am using @BradLarson's GPUImage (with much success), and I am trying to extend the GPUImageHarrisCornerDetectionFilter so that it will not only return the locations of the detected corners, but also ...
0
votes
0answers
25 views

Calling AVAssetReaderTrackOutput more than once causes error

I am working with the GPUImage framework and I am trying to implement a system where a video is edited and then saved and then can be re-edited. I create a NSURL called "originalMovie" and it is ...
1
vote
0answers
147 views

Why can't I write out my opengl FBO to an AVAssetWriter?

I've been fighting for a week off and on to save out my opengl renderings (which I'm using for green screening) to video via an AVAssetWriter. I have created a simple rig below to show what I'm ...
0
votes
0answers
76 views

Android GPUImage Library

In iOS, I am calling this filter function to get the image result. UIImage filteredImage = [[[GPUImageAmatorkaFilter alloc] init] imageByFilteringImage:imgOriginal]; The return is UIImage, so is ...
0
votes
0answers
65 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 ...
1
vote
1answer
55 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 ...
5
votes
2answers
267 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
123 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 ...
0
votes
1answer
97 views

How to use GPUImageLookupFilter without GPUImageFilterGroup?

I have a problem with understanding GPUImage. Specifically, I can't figure out how to use GPUImageLookupFilter. I have several examples of usage in GPUImageAmatorkaFilter for example. But ...
5
votes
1answer
238 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 ...
1
vote
1answer
68 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 ...
0
votes
0answers
71 views

GPUImage Large PNG Files

I can capture a still image on an iPad Retina Display with GPUImage using the crop filter (to 8x10 ratio with a size of 2420x1936 pixels = 4.68 megabytes) using capturePhotoAsPNGProcessedUpToFilter. ...
2
votes
2answers
250 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 ...
0
votes
0answers
40 views

when GPUImageMovieWriter hasAudioTrack set YES , it's Crash [closed]

I want to switch without audio or with audio in the recording process at any time. In the SimpleVideoFilter example. I have a button to click; when I running the app, and during recording, I set : ...
0
votes
1answer
158 views

how to overlay a series of images in GPUImage

I have been looking at GPUImage but cannot figure out how to overlay a series of png or jpg images on top of the video while I am displaying it and recording it. I have roughly 150 photos in a ...
0
votes
0answers
115 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 ...
0
votes
1answer
55 views

Passing previous frame result as input to next frame

All the examples take an image and turn it into something else in one frame, but what if I want to create something like motion blur that requires feedback? That requires combining the results for ...
3
votes
1answer
195 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 : ...
0
votes
1answer
163 views

how to edit existing video using GPUImage and resave it in device library

I want to edit the video using GPUImage which is already saved in device library. After editing, re-save edited video in device library. Please Help.... Thanks in advance...
1
vote
1answer
116 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 ...
3
votes
0answers
110 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 2 3 4