短视频美颜sdk中人脸编辑技术可以将人像风格进行转变,小编认为这也是未来的美颜sdk的一个重要发展方向,下文小编将为大家讲解一下短视频美颜sdk中人脸编辑的关键点。
一、人脸编辑的细分关键点
1、年龄
通过更改人脸的年龄属性,可用于模仿人脸随着年龄变化,例如某音常用的“老化”和“年轻”特效;其次,还可应用到人脸识别方面,辅助跨年龄人群使用,后者就比较冷门了,很少会用到,最多的应用场景便是直播和短视频的特效方面,作为一种创新玩法。
2、表情
表情编辑大家应该不会陌生,哪怕没有接触美颜SDK的早期应该也有所了解,例如前期美颜软件中的笑容修改,此功能就可以把面无表情的照片改成“微笑”、“大笑”等,实现方法也很简单,仅需用美颜算法调整微笑弧度即可。如今此功能也是广泛应用于娱乐社交领域,例如短视频平台最近爆火的“大哭脸”“大笑脸”,多数都用来恶搞和娱乐。
3、姿态
改变人脸的姿态可以用于仿真、以及人脸处理,还可以辅助人脸检测、关键点定位等。
二、短视频美颜sdk代码分析
//
// MHOpenDemoTests.m
// MHOpenDemoTests
//
// Created by Apple on 2021/5/31.
//
//
//
#import <XCTest/XCTest.h>
@interface MHOpenDemoTests : XCTestCase
@end
@implementation MHOpenDemoTests
-
(void)setUp {
// Put setup code here. This method is called before the invocation of each test method in the class.
} -
(void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
} -
(void)testExample {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
} -
(void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
}];
}
@end