code stringlengths 1 1.05M | repo_name stringlengths 6 83 | path stringlengths 3 242 | language stringclasses 222
values | license stringclasses 20
values | size int64 1 1.05M |
|---|---|---|---|---|---|
/*
* Copyright 1999-2019 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/StsRequest.cc | C++ | apache-2.0 | 874 |
/*
* Copyright 1999-2019 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/model/AssumeRoleRequest.cc | C++ | apache-2.0 | 1,820 |
/*
* Copyright 1999-2019 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/model/AssumeRoleResult.cc | C++ | apache-2.0 | 2,052 |
/*
* Copyright 1999-2019 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/model/GetCallerIdentityRequest.cc | C++ | apache-2.0 | 952 |
/*
* Copyright 1999-2019 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/model/GetCallerIdentityResult.cc | C++ | apache-2.0 | 1,706 |
/*
* Copyright 1999-2019 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/core/src/unused/InstanceProfileCredentials.cc | C++ | apache-2.0 | 921 |
#!/bin/bash
product=$1
MAKE=make
if command -v python > /dev/null ; then
MAKE="make -j $(python -c 'import multiprocessing as mp; print(int(mp.cpu_count()))')"
fi
echo $MAKE
rm -rf sdk_build
mkdir sdk_build
cd sdk_build
cmake -DBUILD_PRODUCT="$product" -DBUILD_FUNCTION_TESTS=OFF -DBUILD_UNIT_TESTS=OFF -DENABLE_CO... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/easyinstall.sh | Shell | apache-2.0 | 409 |
cmake_minimum_required(VERSION 3.1)
cmake_policy(SET CMP0048 NEW)
project(alibabacloud-sdk-examples)
set(CMAKE_CXX_STANDARD 11)
add_subdirectory(imagesearch)
add_subdirectory(nlp)
add_subdirectory(rds)
add_subdirectory(ecs)
add_subdirectory(vpc)
add_subdirectory(slb)
add_subdirectory(cdn)
| YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/CMakeLists.txt | CMake | apache-2.0 | 294 |
#include <iostream>
#include "../utils.h"
#include "alibabacloud/core/AlibabaCloud.h"
#include "alibabacloud/facebody/FacebodyClient.h"
#include "alibabacloud/core/CommonClient.h"
using namespace std;
using namespace AlibabaCloud;
using namespace AlibabaCloud::Facebody;
int main() {
utUtils utils;
string key ... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/facebody/facebody.cc | C++ | apache-2.0 | 2,130 |
cmake_minimum_required(VERSION 3.0)
project(imagesearch_demo)
set(CMAKE_CXX_STANDARD 11)
if(CMAKE_HOST_WIN32)
include_directories("C:\\Program Files (x86)\\alibabacloud-sdk\\include")
link_directories("C:\\Program Files (x86)\\alibabacloud-sdk\\lib")
endif()
add_executable(imagesearch_demo imagesearch.cc)
targ... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/imagesearch/CMakeLists.txt | CMake | apache-2.0 | 643 |
#include <map>
#include <sstream>
#include <iostream>
#include "../utils.h"
#include "alibabacloud/core/AlibabaCloud.h"
#include "alibabacloud/core/CommonClient.h"
using namespace std;
using namespace AlibabaCloud;
typedef unsigned char u8_t;
const string catId = "88888888"; // ref: https://help.aliyun.com/document... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/imagesearch/imagesearch.cc | C++ | apache-2.0 | 5,431 |
cmake_minimum_required(VERSION 3.0)
project(nlp_demo)
set(CMAKE_CXX_STANDARD 11)
if(CMAKE_HOST_WIN32)
include_directories("C:\\Program Files (x86)\\alibabacloud-sdk\\include")
link_directories("C:\\Program Files (x86)\\alibabacloud-sdk\\lib")
endif()
add_executable(nlp_demo nlp.cc)
target_link_libraries(nlp_de... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/nlp/CMakeLists.txt | CMake | apache-2.0 | 528 |
#include <iostream>
#include <cstdlib>
#include <cstring>
#include "../utils.h"
#include "alibabacloud/core/AlibabaCloud.h"
#include "alibabacloud/core/CommonClient.h"
using namespace std;
using namespace AlibabaCloud;
int main(int argc, char** argv) {
utUtils utils;
string key = utils.get_env("ENV_AccessKeyId");... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/nlp/nlp.cc | C++ | apache-2.0 | 1,680 |
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h>
#endif
class utUtils {
public:
void get_dir_exec(char* dir, char* exec) {
#ifdef _WIN32
char BufferFileName[MAX_PATH];
memset(BufferFileName,0,MAX_PATH);
if (GetModuleFileName(NULL, BufferFi... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/examples/utils.h | C++ | apache-2.0 | 1,400 |
#
# Copyright 2009-2017 Alibaba Cloud All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applic... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/CMakeLists.txt | CMake | apache-2.0 | 10,183 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/FacebodyClient.h | C++ | apache-2.0 | 35,081 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/FacebodyExport.h | C | apache-2.0 | 1,086 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/AddFaceEntityRequest.h | C++ | apache-2.0 | 1,551 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/AddFaceEntityResult.h | C++ | apache-2.0 | 1,332 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/AddFaceRequest.h | C++ | apache-2.0 | 1,644 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/AddFaceResult.h | C++ | apache-2.0 | 1,385 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/BlurFaceRequest.h | C++ | apache-2.0 | 1,303 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/BlurFaceResult.h | C++ | apache-2.0 | 1,394 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/BodyPostureRequest.h | C++ | apache-2.0 | 1,321 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/BodyPostureResult.h | C++ | apache-2.0 | 1,924 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/CompareFaceRequest.h | C++ | apache-2.0 | 1,536 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/CompareFaceResult.h | C++ | apache-2.0 | 1,520 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/CountCrowdRequest.h | C++ | apache-2.0 | 1,396 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/CountCrowdResult.h | C++ | apache-2.0 | 1,429 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/CreateFaceDbRequest.h | C++ | apache-2.0 | 1,311 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/CreateFaceDbResult.h | C++ | apache-2.0 | 1,325 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DeleteFaceDbRequest.h | C++ | apache-2.0 | 1,311 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DeleteFaceDbResult.h | C++ | apache-2.0 | 1,325 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DeleteFaceEntityRequest.h | C++ | apache-2.0 | 1,460 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DeleteFaceEntityResult.h | C++ | apache-2.0 | 1,353 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DeleteFaceRequest.h | C++ | apache-2.0 | 1,416 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DeleteFaceResult.h | C++ | apache-2.0 | 1,311 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectBodyCountRequest.h | C++ | apache-2.0 | 1,345 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectBodyCountResult.h | C++ | apache-2.0 | 1,439 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectCelebrityRequest.h | C++ | apache-2.0 | 1,345 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectCelebrityResult.h | C++ | apache-2.0 | 1,622 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectChefCapRequest.h | C++ | apache-2.0 | 1,333 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectChefCapResult.h | C++ | apache-2.0 | 1,571 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectFaceRequest.h | C++ | apache-2.0 | 1,405 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectFaceResult.h | C++ | apache-2.0 | 2,035 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectIPCPedestrianRequest.h | C++ | apache-2.0 | 1,883 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectIPCPedestrianResult.h | C++ | apache-2.0 | 1,780 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectLivingFaceRequest.h | C++ | apache-2.0 | 1,433 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectLivingFaceResult.h | C++ | apache-2.0 | 1,831 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectMaskRequest.h | C++ | apache-2.0 | 1,315 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectMaskResult.h | C++ | apache-2.0 | 1,424 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectPedestrianRequest.h | C++ | apache-2.0 | 1,351 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectPedestrianResult.h | C++ | apache-2.0 | 1,608 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectVideoLivingFaceRequest.h | C++ | apache-2.0 | 1,381 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/DetectVideoLivingFaceResult.h | C++ | apache-2.0 | 1,622 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/EnhanceFaceRequest.h | C++ | apache-2.0 | 1,321 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/EnhanceFaceResult.h | C++ | apache-2.0 | 1,415 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ExtractPedestrianFeatureAttrRequest.h | C++ | apache-2.0 | 1,524 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ExtractPedestrianFeatureAttrResult.h | C++ | apache-2.0 | 1,970 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ExtractPedestrianFeatureAttributeRequest.h | C++ | apache-2.0 | 1,764 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ExtractPedestrianFeatureAttributeResult.h | C++ | apache-2.0 | 2,557 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceBeautyRequest.h | C++ | apache-2.0 | 1,559 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceBeautyResult.h | C++ | apache-2.0 | 1,408 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceFilterRequest.h | C++ | apache-2.0 | 1,540 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceFilterResult.h | C++ | apache-2.0 | 1,408 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceMakeupRequest.h | C++ | apache-2.0 | 1,665 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceMakeupResult.h | C++ | apache-2.0 | 1,408 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceTidyupRequest.h | C++ | apache-2.0 | 1,497 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/FaceTidyupResult.h | C++ | apache-2.0 | 1,408 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/GenerateHumanAnimeStyleRequest.h | C++ | apache-2.0 | 1,510 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/GenerateHumanAnimeStyleResult.h | C++ | apache-2.0 | 1,499 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/GetFaceEntityRequest.h | C++ | apache-2.0 | 1,442 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/GetFaceEntityResult.h | C++ | apache-2.0 | 1,567 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/HandPostureRequest.h | C++ | apache-2.0 | 1,321 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/HandPostureResult.h | C++ | apache-2.0 | 2,209 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ListFaceDbsRequest.h | C++ | apache-2.0 | 1,204 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ListFaceDbsResult.h | C++ | apache-2.0 | 1,487 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ListFaceEntitiesRequest.h | C++ | apache-2.0 | 1,955 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/ListFaceEntitiesResult.h | C++ | apache-2.0 | 1,682 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/PedestrianDetectAttributeRequest.h | C++ | apache-2.0 | 1,405 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/PedestrianDetectAttributeResult.h | C++ | apache-2.0 | 3,070 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizeActionRequest.h | C++ | apache-2.0 | 1,625 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizeActionResult.h | C++ | apache-2.0 | 1,708 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizeExpressionRequest.h | C++ | apache-2.0 | 1,369 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizeExpressionResult.h | C++ | apache-2.0 | 1,723 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizeFaceRequest.h | C++ | apache-2.0 | 1,423 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizeFaceResult.h | C++ | apache-2.0 | 2,374 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizePublicFaceRequest.h | C++ | apache-2.0 | 1,443 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/RecognizePublicFaceResult.h | C++ | apache-2.0 | 2,045 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/SearchFaceRequest.h | C++ | apache-2.0 | 1,611 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/SearchFaceResult.h | C++ | apache-2.0 | 1,830 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/SwapFacialFeaturesRequest.h | C++ | apache-2.0 | 1,645 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/SwapFacialFeaturesResult.h | C++ | apache-2.0 | 1,464 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/UpdateFaceEntityRequest.h | C++ | apache-2.0 | 1,569 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/UpdateFaceEntityResult.h | C++ | apache-2.0 | 1,353 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/VerifyFaceMaskRequest.h | C++ | apache-2.0 | 1,448 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/include/alibabacloud/facebody/model/VerifyFaceMaskResult.h | C++ | apache-2.0 | 1,592 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/src/FacebodyClient.cc | C++ | apache-2.0 | 50,392 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/src/model/AddFaceEntityRequest.cc | C++ | apache-2.0 | 1,599 |
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | YifuLiu/AliOS-Things | components/ucloud_ai/src/model/aliyun-openapi/facebody/src/model/AddFaceEntityResult.cc | C++ | apache-2.0 | 1,210 |