问题
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?
回答1:
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.
回答2:
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
来源:https://stackoverflow.com/questions/33892915/how-to-add-real-time-filtering-effects-in-camera-2-api-in-android