Questions tagged [android-gpuimageview]
39 questions
17
votes
1 answer
How to implement Drag Distortion Image filter in android?
I am working on custom image filter project. And I came across one challenging task, in which I am supposed to apply distorted filters as can be seen in Funny face effect app. I want to develop first 3 filters as available in Funny Face Effects.
So…

Maddy
- 4,525
- 4
- 33
- 53
6
votes
2 answers
How to add real time filtering effects in camera 2 API in Android
I am developing a camera application in android, i want to enable real time filtering effects feature in to my app,I have used GPUimage filter to add filtering effects to an image.But i don't know how to enable real time filtering effects to camera…

Jack
- 1,825
- 3
- 26
- 43
6
votes
1 answer
Is it possible to use GPUImageView/ GLSurfaceview in recycler view?
I am working on photo editing app. I am using GPUImageView to apply effects.I want to display multiple thumbnail size images with different different effects in recycler view so that user gets the idea how image will look after applying that effect.

Deepak
- 121
- 12
5
votes
2 answers
Add overlay while record video on Android
I want to record video by camera in my Android device. I need to add overlay image over recorded movie. In iOS I would use GPUImage. In Android I found Android GPUImage. I tried to use it but I didn't found any way to add any filter while video…

Sayaki
- 769
- 14
- 36
4
votes
1 answer
Android - Add text or image while recording video?
I am struggling with recording and editing videos. For editing, I found a useful library in Android named ffmpeg4Android. However, I am still get stuck in recording video. Here is what I want:
1/ Add text or images in video while recording
2/ Add…

Luong Truong
- 1,953
- 2
- 27
- 46
3
votes
0 answers
Android GPUImage filter equivalent of Instagram's "Fade"?
We're using the well-known image processing library GPUImage as ported for Android.
The one here: https://github.com/CyberAgent/android-gpuimage
Most of our desired controls have obvious equivalents in GPUImage; brightness is…

Matthew Housser
- 1,012
- 9
- 21
3
votes
1 answer
How to Record video with GPUImage?
i used https://github.com/CyberAgent/android-gpuimage but its just save images.
how to record video using GLSurfaceview?

Anil Kanani
- 260
- 2
- 19
3
votes
1 answer
Zooming and translate GPUImageView android
I want to GPUimageView able to pinch and zoom. I found example in Image effects with rotation and pinch to zoom using GLSurfaceView Android
So, edit in GPUImageRenderer
private void adjustImageScaling() {
float outputWidth = mOutputWidth;
…

Duc Nguyen
- 87
- 9
3
votes
0 answers
3D Face Scan using Camera in Snapchat
In Snapchat we could tap on the face on the camera. And it would generate a 3D wireframe around our face. i am wondering how do they achieve that?
Any library that does that?
P.S.: Please help vote up for attract answers I have searched SO and…

JayVDiyk
- 4,277
- 22
- 70
- 135
3
votes
0 answers
Android GPUImageView upside down
I am using the GPUImage library for Android to do image processing. I have a main GPUImageView and a ListView (and RecyclerView) under it which shows the same image as in the main GPUImageView but with all the different filters. The image(s) in the…

Max Kleine
- 143
- 1
- 1
- 11
2
votes
0 answers
GpuImage does not render properly
Currently I am working on an Android App with GpuImage Library. My goal is to apply filters on images via GpuImage.
GpuImage gpuImage = new GpuImage(this);
gpuImage.setBitmap(imageBitmap) // bitmap of the image that I want to apply effect…

rbbozkurt
- 21
- 1
- 2
2
votes
3 answers
GPUImageView setImage(bitmap) is not working correctly for second time
I am developing an Photo application and i uses android GPUImageView for image edit. I want to use multiple filter.
the xml portion is like

Rezaul Karim
- 1,311
- 1
- 18
- 26
2
votes
1 answer
how to set multiple effect on same gpuimageview
i am trying to put a sticker on a gpuimageview and apply the effects on it by gpuimagefilter
first,when i tried to apply a new effect on previous effect of gpuimage it ignore the previous effect and apply the current one, but i want this effect to…

Varun Chaudhary
- 370
- 4
- 19
2
votes
1 answer
Adapting Grafika RecordFBOActivity to work with Android GPUImage
I have an application that is using the Android port of GPUImage as the OpenGL Renderer and manager of several filters.
It currently does not have a video implementation, so I am trying to adapt the RecordFBOActivity from the Google grafika…

jesses.co.tt
- 2,689
- 1
- 30
- 49
2
votes
1 answer
Apply multiple filters to an image
I am trying to apply 3 filters to an image.
One rgbFilter which is has its values constant, a brightness filter and a saturation filter.
user2806195