Agora provides an image enhancement API for users in social and entertainment scenarios to improve their appearance in a video call or interactive live video streaming. With this API, users can adjust settings such as the image contrast, brightness, sharpness, and red saturation, as shown in the following figure:
Before proceeding, ensure that you have implemented basic real-time functions in your project. See Start a Call or Start Live Interactive Streaming for details.
Call the setBeautyEffectOptions
method to flexibly add image enhancement features.
This method has two parameters:
enabled
: sets whether or not to enable image enhancement.options
: sets the image enhancement options, including lighteningContrastLevel
for adjusting the contrast level, lightening
for adjusting the brightness level, smoothness
for adjusting the sharpness level, and redness
for adjusting the red saturation level.mRtcEngine.setBeautyEffectOptions(true, new BeautyOptions(LIGHTENING_CONTRAST_NORMAL, 0.5F, 0.5F, 0.5F));
We also provide an open-source OpenLive-Android demo project that implements image enhancement on GitHub. You can go to the repository to download it. You can try the demo and refer to the source code of the onBeautyClicked
method in the LiveActivity.java
file.