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 preview before taking a picture.I have used camera and camera 2 api for below lollipop version and for lollipop version.Any library is available for this ?? I am a beginner,Can anyone help?
How to add real time filtering effects in camera 2 API in Android
10.6k Views Asked by Jack At
2
There are 2 best solutions below
0

yes I agree with the comments above, by using
mBuilder.set (CaptureRequest.CONTROL_EFFECT_MODE, / * your value * /);
Another example can use the code as below View More
mPreviewRequestBuilder.set (CaptureRequest.CONTROL_EFFECT_MODE, CaptureRequest.CONTROL_EFFECT_MODE_SEPIA);
complete documentation here
If you need simple filters like sepia or negative you can just set CONTROL_EFFECT_MODE field in CaptureRequest instance via CaptureRequest.Builder method
mBuilder.set(CaptureRequest.CONTROL_EFFECT_MODE, /*your value*/);
see developers doc for available values.