ai
  • 简介
  • 百度AI
    • 人脸识别
      • 人脸库管理
      • 人脸检测
      • 人脸搜索
      • 人脸对比
      • 身份验证
    • OCR文字识别
    • 图像识别
    • 人体分析
    • nlp自然语言
  • 腾讯AI
    • OCR文字识别
    • 人脸识别
      • 人脸库管理
    • 图片特效
    • 图片识别
    • 敏感信息审核
    • 智能闲聊
    • 机器翻译
    • 基础文本分析
    • 语义解析
    • 语音识别
    • 语音合成
Powered by GitBook
On this page
  • 滤镜
  • 人脸美妆
  • 人脸变妆
  • 大头贴
  • 颜龄检测

Was this helpful?

  1. 腾讯AI

图片特效

Previous人脸库管理Next图片识别

Last updated 6 years ago

Was this helpful?

滤镜

$res = $ai->ptu()->path('path/to/some_image.jpg')->imgFilter([
    'filter' => 1 //滤镜特效编码  
]);

if($res->success()){
    var_dump($res->toArray());
}

人脸美妆

$res = $ai->ptu()->path('path/to/some_image.jpg')->faceCosmetic([
    'cosmetic' => 1 //美妆编码
]);


if($res->success()){
    var_dump($res->toArray());
}

人脸变妆

$res = $ai->ptu()->path('path/to/some_image.jpg')->faceDecoration([
    'decoration' => 1 //变妆编码  
]);


if($res->success()){
    var_dump($res->toArray());
}

大头贴

$res = $ai->ptu()->path('path/to/some_image.jpg')->faceSticker([
    'sticker' => 1 //大头贴编码  
]);

if($res->success()){
    var_dump($res->toArray());
}

颜龄检测

$res = $ai->ptu()->path('path/to/some_image.jpg')->faceAge();

if($res->success()){
    var_dump($res->toArray());
}

查看滤镜特效编码
查看美妆编码
查看变妆编码
查看大头贴编码