ColorEnhanceOptions
色彩增强选项。
Dart
class ColorEnhanceOptions {
const ColorEnhanceOptions({this.strengthLevel, this.skinProtectLevel});
(name: 'strengthLevel')
final double? strengthLevel;
(name: 'skinProtectLevel')
final double? skinProtectLevel;
factory ColorEnhanceOptions.fromJson(Map<String, dynamic> json) =>
_$ColorEnhanceOptionsFromJson(json);
Map<String, dynamic> toJson() => _$ColorEnhanceOptionsToJson(this);
}
strengthLevel
色彩增强程度。取值范围为 [0.0,1.0]。
0.0
表示不对视频进行色彩增强。取值越大,色彩增强的程度越大。默认值为 0.5
。skinProtectLevel
肤色保护程度。取值范围为 [0.0,1.0]。0.0
表示不对肤色进行保护。取值越大,肤色保护的程度越大。默认值为 1.0
。
- 当色彩增强程度较大时,人像肤色会明显失真,你需要设置肤色保护程度;
- 肤色保护程度较大时,色彩增强效果会略微降低。