# frozen_string_literal: true

# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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 applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'json'

module TencentCloud
  module Tiia
    module V20190529
      class Client < TencentCloud::Common::AbstractClient

        def initialize(credential, region, profile = nil)
            api_version = '2019-05-29'
            api_endpoint = 'tiia.tencentcloudapi.com'
            sdk_version = 'TIIA_' + File.read(File.expand_path('../VERSION', __dir__)).strip
            super(credential, region, api_version, api_endpoint, sdk_version, profile)
        end


        # 评估输入图片在视觉上的质量,从多个方面评估,并同时给出综合的、客观的清晰度评分,和主观的美观度评分。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for AssessQuality.
        # @type request: :class:`Tencentcloud::tiia::V20190529::AssessQualityRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::AssessQualityResponse`
        def AssessQuality(request)
          body = send_request('AssessQuality', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = AssessQualityResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 用于创建一个空的图片库,如果图片库已存在则返回错误。

        # @param request: Request instance for CreateGroup.
        # @type request: :class:`Tencentcloud::tiia::V20190529::CreateGroupRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::CreateGroupResponse`
        def CreateGroup(request)
          body = send_request('CreateGroup', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = CreateGroupResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 创建图片,并添加对应图片的自定义信息。

        # @param request: Request instance for CreateImage.
        # @type request: :class:`Tencentcloud::tiia::V20190529::CreateImageRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::CreateImageResponse`
        def CreateImage(request)
          body = send_request('CreateImage', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = CreateImageResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 根据输入的裁剪比例,智能判断一张图片的最佳裁剪区域,确保原图的主体区域不受影响。

        # 可以自动裁剪图片,适应不同平台、设备的展示要求,避免简单拉伸带来的变形。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for CropImage.
        # @type request: :class:`Tencentcloud::tiia::V20190529::CropImageRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::CropImageResponse`
        def CropImage(request)
          body = send_request('CropImage', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = CropImageResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 删除图片。

        # @param request: Request instance for DeleteImages.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DeleteImagesRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DeleteImagesResponse`
        def DeleteImages(request)
          body = send_request('DeleteImages', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DeleteImagesResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 查询所有的图库信息。

        # @param request: Request instance for DescribeGroups.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DescribeGroupsRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DescribeGroupsResponse`
        def DescribeGroups(request)
          body = send_request('DescribeGroups', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DescribeGroupsResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 获取指定图片库中的图片列表。

        # @param request: Request instance for DescribeImages.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DescribeImagesRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DescribeImagesResponse`
        def DescribeImages(request)
          body = send_request('DescribeImages', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DescribeImagesResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 传入一张图片,可以识别图片中包含的人物是否为公众人物,如果是,输出人物的姓名、基本信息、脸部坐标。

        # 支持识别一张图片中存在的多个人脸,针对每个人脸,会给出与之最相似的公众人物。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectCelebrity.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectCelebrityRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectCelebrityResponse`
        def DetectCelebrity(request)
          body = send_request('DetectCelebrity', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectCelebrityResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 输入一张图片,返回AI针对一张图片是否是恶心的一系列判断值。

        # 通过恶心图片识别, 可以判断一张图片是否令人恶心, 同时给出它属于的潜在类别, 让您能够过滤掉使人不愉快的图片。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectDisgust.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectDisgustRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectDisgustResponse`
        def DetectDisgust(request)
          body = send_request('DetectDisgust', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectDisgustResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 图像标签利用深度学习技术、海量训练数据,可以对图片进行智能分类、物体识别等。

        # 目前支持8个大类、六十多个子类、数千个标签。涵盖各种日常场景、动植物、物品、美食、卡证等。具体分类请见[图像分析常见问题功能与限制相关](https://cloud.tencent.com/document/product/865/39164)。

        # 图像标签提供四个版本供选择:

        # • 摄像头版:针对搜索、手机摄像头照片进行优化,涵盖大量卡证、日常物品、二维码条形码。

        # • 相册版:针对手机相册、网盘进行优化,去除相册和网盘中不常见的标签,针对相册常见图片类型(人像、日常活动、日常物品等)识别效果更好。

        # • 网络版:针对网络图片进行优化,涵盖标签更多,满足长尾识别需求。

        # • 新闻版:针对新闻、资讯、广电等行业进行优化,增加定制识别,支持万级图像标签。

        # 每个产品的图像类型都有独特性,建议在接入初期,对四个版本进行对比评估后选择合适的版本使用。

        # 为了方便使用、减少图片传输次数,图像标签包装成多合一接口,实际上是多个服务。

        # 图像标签按照服务的实际使用数量进行收费。例如一张图片同时调用相册版、摄像头版两个服务,那么此次调用按照两次计费。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectLabel.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectLabelRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectLabelResponse`
        def DetectLabel(request)
          body = send_request('DetectLabel', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectLabelResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 图像标签测试接口

        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectLabelBeta.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectLabelBetaRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectLabelBetaResponse`
        def DetectLabelBeta(request)
          body = send_request('DetectLabelBeta', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectLabelBetaResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 可以识别输入的图片中是否包含不良行为,例如打架斗殴、赌博、抽烟等,可以应用于广告图、直播截图、短视频截图等审核,减少不良行为对平台内容质量的影响,维护健康向上的互联网环境。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectMisbehavior.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectMisbehaviorRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectMisbehaviorResponse`
        def DetectMisbehavior(request)
          body = send_request('DetectMisbehavior', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectMisbehaviorResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 本接口支持识别图片中包含的商品,能够输出商品的品类名称、类别,还可以输出商品在图片中的位置。支持一张图片多个商品的识别。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectProduct.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectProductRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectProductResponse`
        def DetectProduct(request)
          body = send_request('DetectProduct', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectProductResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 商品识别-微信识物版,基于人工智能技术、海量训练图片、亿级商品库,可以实现全覆盖、细粒度、高准确率的商品识别和商品推荐功能。
        # 本服务可以识别出图片中的主体位置、主体商品类型,覆盖亿级SKU,输出具体商品的价格、型号等详细信息。
        # 客户无需自建商品库,即可快速实现商品识别、拍照搜商品等功能。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for DetectProductBeta.
        # @type request: :class:`Tencentcloud::tiia::V20190529::DetectProductBetaRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::DetectProductBetaResponse`
        def DetectProductBeta(request)
          body = send_request('DetectProductBeta', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = DetectProductBetaResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 传入一张图片,输出清晰度提升后的图片。

        # 可以消除图片有损压缩导致的噪声,和使用滤镜、拍摄失焦导致的模糊。让图片的边缘和细节更加清晰自然。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for EnhanceImage.
        # @type request: :class:`Tencentcloud::tiia::V20190529::EnhanceImageRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::EnhanceImageResponse`
        def EnhanceImage(request)
          body = send_request('EnhanceImage', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = EnhanceImageResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 腾讯云车辆属性识别可对汽车车身及车辆属性进行检测与识别,目前支持11种车身颜色、20多种车型、300多种品牌、4000多种车系+年款的识别,同时支持对车辆的位置进行检测。如果图片中存在多辆车,会分别输出每辆车的车型和坐标。
        # >
        # - 公共参数中的签名方式必须指定为V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。

        # @param request: Request instance for RecognizeCar.
        # @type request: :class:`Tencentcloud::tiia::V20190529::RecognizeCarRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::RecognizeCarResponse`
        def RecognizeCar(request)
          body = send_request('RecognizeCar', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = RecognizeCarResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end

        # 本接口用于对一张待识别的商品图片,在指定图片库中检索出最相似的图片列表。

        # @param request: Request instance for SearchImage.
        # @type request: :class:`Tencentcloud::tiia::V20190529::SearchImageRequest`
        # @rtype: :class:`Tencentcloud::tiia::V20190529::SearchImageResponse`
        def SearchImage(request)
          body = send_request('SearchImage', request.serialize)
          response = JSON.parse(body)
          if response['Response'].key?('Error') == false
            model = SearchImageResponse.new
            model.deserialize(response['Response'])
            model
          else
            code = response['Response']['Error']['Code']
            message = response['Response']['Error']['Message']
            reqid = response['Response']['RequestId']
            raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
          end
        rescue TencentCloud::Common::TencentCloudSDKException => e
          raise e
        rescue StandardError => e
          raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
        end


      end
    end
  end
end