Tagged Questions
1
vote
1answer
180 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:
...
0
votes
1answer
131 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 ...
3
votes
0answers
91 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
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
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
270 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
127 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 ...
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
1answer
167 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...
3
votes
0answers
111 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?
...
0
votes
1answer
134 views
GPUImageMovieWriter starting new recording
Can i reuse an existing GPUImageMovieWriter (after calling finishRecording) or is there a method to pause and resume the recording?
I get error if i call startRecoding after a finishRecording.
...
0
votes
1answer
142 views
GPUImageStillCamera output image resolution
I'm trying to take photo from camera with GPUImage framework. Use standard implementation. But my output image has too low resolution - {640, 852}. Is there way to get more higher resolution?
0
votes
1answer
194 views
Translate GPUImage position with GPUImageTransformFilter and iOS Pan Gesture?
I'm having an issue using the GPUImage transform filter. I'm using the pan gesture recognizer to reposition the image. The code that I have works, but the image moves at about half speed. If I double ...
-1
votes
1answer
129 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.
1
vote
0answers
128 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 ...
1
vote
0answers
249 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 ...
1
vote
0answers
151 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
497 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 ...
3
votes
1answer
193 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 ...
2
votes
0answers
103 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 ...
1
vote
1answer
157 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
48 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 ...
2
votes
1answer
253 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 ...
1
vote
1answer
799 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
4answers
637 views
GPUImage Chroma Key filter
I am trying to use the GPUImage framework's chromakey filter. I followed the Filtershowcase example, but obviously I am missed something becuase it only shows the video, but no green screen keying out ...
0
votes
0answers
215 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 ...
1
vote
0answers
175 views
how to remove light and shadow By GPUImage filter
I want to convert a image which take from camera to black and white and print it.This image is just take from document or paper.
so I use the follow code:
{
GPUImagePicture *stillImageSource = ...
1
vote
0answers
115 views
How to extract the Human figure from the UIImage [closed]
I want to extract the Human figure from the UIImage. I don't know how to detect the shape of the Human in UIImage. The face detection api doesn't help to find out the complete shape of the figure.
...
0
votes
1answer
613 views
GPUImagePicture with imageFromCurrentlyProcessedOutput doesn't get UIImage
I'm using GPUImage for processing a local photo, I'm using this to initialize:
localImageSource = [[GPUImagePicture alloc] initWithImage:selectedImage];
Then I'm adding the filters and I can see it ...
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
0answers
163 views
Using GPUImage on UIImagePickerController
Good day! I am new to Objective-C and to iOS App development in general. I just started a few months ago, and so I'm exploring other things I can do.
I am trying to make an image editor app that ...
0
votes
2answers
1k views
How do you add GPUImage to an iOS project?
I am trying to make a camera/photo app that will add a filter on an image. I have heard of Brad Larson's GPUImage and so I downloaded it and tried to manipulate it to be more familiar with the code.
...
0
votes
0answers
183 views
How to save captured video in photo library using GPUImage?
I am using GPUImage library to record filtered videos.
and I am trying to save the captured video in the photo library of the iphone,
but the sample code saves the video in iTunes file sharing.
...
0
votes
1answer
877 views
GLSL - How to access pixel data of a texture is GLSL shader?
What I want to do is, access the pixel data of a texture in the OpenGL Shader.
After that, compair their Red-component so that I can get the coordinate of the pixel which has the maximum ...
0
votes
1answer
176 views
How to blur UIImage excluding specific point.
In GPUImageGaussianSelectiveBlurFilter how to set the point of non image blur ? i tried setting the point excludeCirclePoint but everything gets blur. I want to implement touches gesture and the ...
3
votes
1answer
588 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 ...
0
votes
0answers
244 views
GPUImageStillCamera black when builded to ipa
I'm trying to make app using GPUImage library. I'm doing it according to DLCImagePickerController example. Everything works ok, as far as I'm running it on iPhone from Xcode. Only if I made ipa and ...
4
votes
0answers
697 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 ...
28
votes
1answer
863 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 ...
2
votes
0answers
595 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] ...
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 ...
2
votes
0answers
553 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];
...
0
votes
0answers
488 views
gpuimage record sample
I want implement a record app use GPUImage framework, and the sample "SimpleVideoFilter" just record 10s, and stop. My app have a button, like "record/stop". when i fist click it, start record, click ...
0
votes
0answers
328 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 ...



