/* * 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 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. */ #include #include using namespace AlibabaCloud::Imagerecog; using namespace AlibabaCloud::Imagerecog::Model; RecognizeLogoResult::RecognizeLogoResult() : ServiceResult() {} RecognizeLogoResult::RecognizeLogoResult(const std::string &payload) : ServiceResult() { parse(payload); } RecognizeLogoResult::~RecognizeLogoResult() {} void RecognizeLogoResult::parse(const std::string &payload) { Json::Reader reader; Json::Value value; reader.parse(payload, value); setRequestId(value["RequestId"].asString()); auto dataNode = value["Data"]; auto allElementsNode = dataNode["Elements"]["Element"]; for (auto dataNodeElementsElement : allElementsNode) { Data::Element elementObject; if(!dataNodeElementsElement["ImageURL"].isNull()) elementObject.imageURL = dataNodeElementsElement["ImageURL"].asString(); if(!dataNodeElementsElement["TaskId"].isNull()) elementObject.taskId = dataNodeElementsElement["TaskId"].asString(); auto allResultsNode = dataNodeElementsElement["Results"]["Result"]; for (auto dataNodeElementsElementResultsResult : allResultsNode) { Data::Element::Result resultsObject; if(!dataNodeElementsElementResultsResult["Suggestion"].isNull()) resultsObject.suggestion = dataNodeElementsElementResultsResult["Suggestion"].asString(); if(!dataNodeElementsElementResultsResult["Label"].isNull()) resultsObject.label = dataNodeElementsElementResultsResult["Label"].asString(); if(!dataNodeElementsElementResultsResult["Rate"].isNull()) resultsObject.rate = std::stof(dataNodeElementsElementResultsResult["Rate"].asString()); auto allLogosDataNode = dataNodeElementsElementResultsResult["LogosData"]["LogoData"]; for (auto dataNodeElementsElementResultsResultLogosDataLogoData : allLogosDataNode) { Data::Element::Result::LogoData logosDataObject; if(!dataNodeElementsElementResultsResultLogosDataLogoData["Type"].isNull()) logosDataObject.type = dataNodeElementsElementResultsResultLogosDataLogoData["Type"].asString(); if(!dataNodeElementsElementResultsResultLogosDataLogoData["W"].isNull()) logosDataObject.w = std::stof(dataNodeElementsElementResultsResultLogosDataLogoData["W"].asString()); if(!dataNodeElementsElementResultsResultLogosDataLogoData["H"].isNull()) logosDataObject.h = std::stof(dataNodeElementsElementResultsResultLogosDataLogoData["H"].asString()); if(!dataNodeElementsElementResultsResultLogosDataLogoData["Y"].isNull()) logosDataObject.y = std::stof(dataNodeElementsElementResultsResultLogosDataLogoData["Y"].asString()); if(!dataNodeElementsElementResultsResultLogosDataLogoData["Name"].isNull()) logosDataObject.name = dataNodeElementsElementResultsResultLogosDataLogoData["Name"].asString(); if(!dataNodeElementsElementResultsResultLogosDataLogoData["X"].isNull()) logosDataObject.x = std::stof(dataNodeElementsElementResultsResultLogosDataLogoData["X"].asString()); resultsObject.logosData.push_back(logosDataObject); } elementObject.results.push_back(resultsObject); } data_.elements.push_back(elementObject); } } RecognizeLogoResult::Data RecognizeLogoResult::getData()const { return data_; }