删除人脸-faceDelFace

返回内容介绍:
public static String sample(TAipFace client) throws Exception {
  //参数
  String person_id = "20181001001";//需要删除的个体(Person)ID
  String face_ids = "20181001001001";//需要删除的人脸(Face)ID(多个之间用“\
  String result = client.faceDelFace(person_id,face_ids);//删除人脸   
  return result;
}