| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * 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 <alibabacloud/facebody/model/ExtractPedestrianFeatureAttributeResult.h>
- #include <json/json.h>
- using namespace AlibabaCloud::Facebody;
- using namespace AlibabaCloud::Facebody::Model;
- ExtractPedestrianFeatureAttributeResult::ExtractPedestrianFeatureAttributeResult() :
- ServiceResult()
- {}
- ExtractPedestrianFeatureAttributeResult::ExtractPedestrianFeatureAttributeResult(const std::string &payload) :
- ServiceResult()
- {
- parse(payload);
- }
- ExtractPedestrianFeatureAttributeResult::~ExtractPedestrianFeatureAttributeResult()
- {}
- void ExtractPedestrianFeatureAttributeResult::parse(const std::string &payload)
- {
- Json::Reader reader;
- Json::Value value;
- reader.parse(payload, value);
- setRequestId(value["RequestId"].asString());
- auto dataNode = value["Data"];
- if(!dataNode["ObjType"].isNull())
- data_.objType = dataNode["ObjType"].asString();
- if(!dataNode["ObjTypeScore"].isNull())
- data_.objTypeScore = std::stof(dataNode["ObjTypeScore"].asString());
- if(!dataNode["Feature"].isNull())
- data_.feature = dataNode["Feature"].asString();
- if(!dataNode["QualityScore"].isNull())
- data_.qualityScore = std::stof(dataNode["QualityScore"].asString());
- if(!dataNode["UpperColor"].isNull())
- data_.upperColor = dataNode["UpperColor"].asString();
- if(!dataNode["UpperColorScore"].isNull())
- data_.upperColorScore = std::stof(dataNode["UpperColorScore"].asString());
- if(!dataNode["UpperType"].isNull())
- data_.upperType = dataNode["UpperType"].asString();
- if(!dataNode["UpperTypeScore"].isNull())
- data_.upperTypeScore = std::stof(dataNode["UpperTypeScore"].asString());
- if(!dataNode["LowerColor"].isNull())
- data_.lowerColor = dataNode["LowerColor"].asString();
- if(!dataNode["LowerColorScore"].isNull())
- data_.lowerColorScore = std::stof(dataNode["LowerColorScore"].asString());
- if(!dataNode["LowerType"].isNull())
- data_.lowerType = dataNode["LowerType"].asString();
- if(!dataNode["LowerTypeScore"].isNull())
- data_.lowerTypeScore = std::stof(dataNode["LowerTypeScore"].asString());
- if(!dataNode["Gender"].isNull())
- data_.gender = dataNode["Gender"].asString();
- if(!dataNode["GenderScore"].isNull())
- data_.genderScore = std::stof(dataNode["GenderScore"].asString());
- if(!dataNode["Hair"].isNull())
- data_.hair = dataNode["Hair"].asString();
- if(!dataNode["HairScore"].isNull())
- data_.hairScore = std::stof(dataNode["HairScore"].asString());
- if(!dataNode["Age"].isNull())
- data_.age = dataNode["Age"].asString();
- if(!dataNode["AgeScore"].isNull())
- data_.ageScore = std::stof(dataNode["AgeScore"].asString());
- auto allElementsNode = dataNode["Elements"]["Element"];
- for (auto dataNodeElementsElement : allElementsNode)
- {
- Data::Element elementObject;
- if(!dataNodeElementsElement["ObjType"].isNull())
- elementObject.objType = dataNodeElementsElement["ObjType"].asString();
- if(!dataNodeElementsElement["ObjTypeScore"].isNull())
- elementObject.objTypeScore = std::stof(dataNodeElementsElement["ObjTypeScore"].asString());
- if(!dataNodeElementsElement["Feature"].isNull())
- elementObject.feature = dataNodeElementsElement["Feature"].asString();
- if(!dataNodeElementsElement["QualityScore"].isNull())
- elementObject.qualityScore = std::stof(dataNodeElementsElement["QualityScore"].asString());
- if(!dataNodeElementsElement["UpperColor"].isNull())
- elementObject.upperColor = dataNodeElementsElement["UpperColor"].asString();
- if(!dataNodeElementsElement["UpperColorScore"].isNull())
- elementObject.upperColorScore = std::stof(dataNodeElementsElement["UpperColorScore"].asString());
- if(!dataNodeElementsElement["UpperType"].isNull())
- elementObject.upperType = dataNodeElementsElement["UpperType"].asString();
- if(!dataNodeElementsElement["UpperTypeScore"].isNull())
- elementObject.upperTypeScore = std::stof(dataNodeElementsElement["UpperTypeScore"].asString());
- if(!dataNodeElementsElement["LowerColor"].isNull())
- elementObject.lowerColor = dataNodeElementsElement["LowerColor"].asString();
- if(!dataNodeElementsElement["LowerColorScore"].isNull())
- elementObject.lowerColorScore = std::stof(dataNodeElementsElement["LowerColorScore"].asString());
- if(!dataNodeElementsElement["LowerType"].isNull())
- elementObject.lowerType = dataNodeElementsElement["LowerType"].asString();
- if(!dataNodeElementsElement["LowerTypeScore"].isNull())
- elementObject.lowerTypeScore = std::stof(dataNodeElementsElement["LowerTypeScore"].asString());
- if(!dataNodeElementsElement["Gender"].isNull())
- elementObject.gender = dataNodeElementsElement["Gender"].asString();
- if(!dataNodeElementsElement["GenderScore"].isNull())
- elementObject.genderScore = std::stof(dataNodeElementsElement["GenderScore"].asString());
- if(!dataNodeElementsElement["Hair"].isNull())
- elementObject.hair = dataNodeElementsElement["Hair"].asString();
- if(!dataNodeElementsElement["HairScore"].isNull())
- elementObject.hairScore = std::stof(dataNodeElementsElement["HairScore"].asString());
- if(!dataNodeElementsElement["Age"].isNull())
- elementObject.age = dataNodeElementsElement["Age"].asString();
- if(!dataNodeElementsElement["AgeScore"].isNull())
- elementObject.ageScore = std::stof(dataNodeElementsElement["AgeScore"].asString());
- data_.elements.push_back(elementObject);
- }
- }
- ExtractPedestrianFeatureAttributeResult::Data ExtractPedestrianFeatureAttributeResult::getData()const
- {
- return data_;
- }
|