AI Effects
  • iOS
  • Android : Java
  • Overview
  • Release notes
  • SDK downloads
  • Demo app
  • Sample codes
  • Getting started
    • Integrate the SDK
    • Import resources and models
    • Online authentication
    • Implement basic image processing
  • Guides
    • Face beautification
    • Face shape retouch
    • Beauty makeups
    • Background segmentation
    • Face detection
    • Stickers
    • Filters
  • Tutorials
  • Error codes
  • Documentation
  • AI Effects
  • Guides
  • Face beautification

Face beautification

Last updated:2022-05-12 11:23

The ZegoEffects SDK provides various face beautification features that help users look like their best selves on live video, including skin tone enhancement, skin smoothing, cheek blusher, image sharpening, and more.

Prerequisites

Before you begin to use the SDK's face beautification features in your project, make sure you complete the following steps:

  1. Integrate the ZegoEffects SDK into your project. For details, see Integration.
  2. Implement the basic image processing functionality. For details, see Implementation.
  3. Initialize the ZegoEffects object with the width and height of the image to be processed.

Implementation steps

In general, take the following steps to use a face beautification feature:

  1. Enable the feature.
  2. Specify the parameters of the beautification feature as needed. If not specified, the SDK uses the default settings.

Skin tone enhancement

Use this feature to make the skin tone whiter or tanner.

To use the skin tone enhancement feature, import the related resource file FaceWhiteningResources first; otherwise, this feature can't take effect. For details, see Import resources and models.

  1. Call the enableWhiten method to enable the skin tone enhancement feature.

  2. Call the setWhitenParam method to set the intensity.

    The value range of the intensity property of ZegoEffectsWhitenParam is [0, 100], and the default value is 50. As this value gets larger, the skin tone gets whiter.

// Enable the skin tone enhancement feature.
mEffects.enableWhiten(true);

// Set the whitening intensity. The value range is [0, 100], and the default value is 50.
ZegoEffectsWhitenParam param = new ZegoEffectsWhitenParam();
param.intensity = 100;
mEffects.setWhitenParam(param);

Skin smoothing

  1. Call the enableSmooth method to enable the skin smoothing feature.

  2. Call the setSmoothParam method to set the smoothing intensity.

    The value range of the intensity property of ZegoEffectsSmoothParam is [0, 100], and the default value is 50. As this value gets larger, the skin looks smoother.

// Enable the skin smoothing feature
mEffects.enableSmooth(true);

// Set the indensity of skin smoothing. The value range is [0, 100], and the default value is 50. 
ZegoEffectsSmoothParam param = new ZegoEffectsSmoothParam();
param.intensity = 100;
mEffects.setSmoothParam(param);

Cheek blusher

For this feature to work correctly, you need to import the related resource files first. For details, see Import resources.

  1. Call the enableRosymethod to enable the cheek blusher feature.

  2. Call the setRosyParam interface to set the rosy intensity.

    The value range of the intensity property of ZegoEffectsRosyParam is [0, 100], and the default value is 50. As this value gets larger, the cheek gets rosier.

// Enable the cheek blusher feature
mEffects.enableRosy(true)

// Set the blusher intensity. The value range is [0, 100], and the default value is 50.
ZegoEffectsRosyParam param = new ZegoEffectsRosyParam();
param.intensity = 100;
mEffects.setRosyParam(param);

Image sharpening

  1. Call the enableSharpen method to enable the image sharpening feature.

  2. Call the setSharpenParam method to set the sharpening strength.

    The value range of the intensity property of ZegoEffectsSharpenParam is [0, 100], and the default value is 50. As this value gets larger, the image looks sharper.

// Enable the image sharpening feature
mEffects.enableSharpen(true);

// Set the sharpening intensity. The value range is [0, 100], and the default value is 50.
ZegoEffectsSharpenParam param = new ZegoEffectsSharpenParam();
param.intensity = 100;
mEffects.setSharpenParam(param);

Nasolabial folds removing

  1. Call the enableWrinklesRemoving method to enable the nasolabial folds removing feature.

  2. Call the setWrinklesRemovingParam to set the intensity.

    The value range of the intensity property of the ZegoEffectsWrinklesRemovingParam is [0, 100], and the default value is 50. As this value gets larger, the more thoroughly the nasolabial folds are removed.

// Enable the nasolabial folds removing feature.
mEffects.enableWrinklesRemoving(true);

// Set the instensity, the value range is [0, 100], and the default value is 50.
ZegoEffectsWrinklesRemovingParam param = new ZegoEffectsWrinklesRemovingParam ();
param.intensity = 100;
mEffects.setWrinklesRemovingParam(param);

Dark circles removing

  1. Call the enableDarkCirclesRemoving method to enable the dark circles removing feature.

  2. Call the setDarkCirclesRemovingParam method to set the intensity.

    The value range of the intensity property of the ZegoEffectsDarkCirclesRemovingParam is [0, 100], and the default value is 50. As this value gets larger, the more thoroughly the dark circles are removed.

// Enable the dark circles removing feature.
mEffects.enableDarkCirclesRemoving(true);

// Set the instensity, the value range is [0, 100], and the default value is 50.
ZegoEffectsDarkCirclesRemovingParam param = new ZegoEffectsDarkCirclesRemovingParam ();
param.intensity = 100;
mEffects.setDarkCirclesRemovingParam(param);
Page Directory