102 lines
3.5 KiB
C++
102 lines
3.5 KiB
C++
/*
|
|
* 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/HandPostureResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Facebody;
|
|
using namespace AlibabaCloud::Facebody::Model;
|
|
|
|
HandPostureResult::HandPostureResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
HandPostureResult::HandPostureResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
HandPostureResult::~HandPostureResult()
|
|
{}
|
|
|
|
void HandPostureResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
auto dataNode = value["Data"];
|
|
auto allOutputsNode = dataNode["Outputs"]["Output"];
|
|
for (auto dataNodeOutputsOutput : allOutputsNode)
|
|
{
|
|
Data::Output outputObject;
|
|
if(!dataNodeOutputsOutput["HandCount"].isNull())
|
|
outputObject.handCount = std::stoi(dataNodeOutputsOutput["HandCount"].asString());
|
|
auto allResultsNode = allOutputsNode["Results"]["Result"];
|
|
for (auto allOutputsNodeResultsResult : allResultsNode)
|
|
{
|
|
Data::Output::Result resultsObject;
|
|
auto boxNode = value["Box"];
|
|
if(!boxNode["Confident"].isNull())
|
|
resultsObject.box.confident = std::stof(boxNode["Confident"].asString());
|
|
auto allPositionsNode = boxNode["Positions"]["Position"];
|
|
for (auto boxNodePositionsPosition : allPositionsNode)
|
|
{
|
|
Data::Output::Result::Box::Position positionObject;
|
|
auto allPoints = value["Points"]["Point"];
|
|
for (auto value : allPoints)
|
|
positionObject.points.push_back(value.asString());
|
|
resultsObject.box.positions.push_back(positionObject);
|
|
}
|
|
auto handsNode = value["Hands"];
|
|
if(!handsNode["Confident"].isNull())
|
|
resultsObject.hands.confident = std::stof(handsNode["Confident"].asString());
|
|
auto allKeyPointsNode = handsNode["KeyPoints"]["KeyPoint"];
|
|
for (auto handsNodeKeyPointsKeyPoint : allKeyPointsNode)
|
|
{
|
|
Data::Output::Result::Hands::KeyPoint keyPointObject;
|
|
if(!handsNodeKeyPointsKeyPoint["Label"].isNull())
|
|
keyPointObject.label = handsNodeKeyPointsKeyPoint["Label"].asString();
|
|
auto allPositions1Node = allKeyPointsNode["Positions"]["Position"];
|
|
for (auto allKeyPointsNodePositionsPosition : allPositions1Node)
|
|
{
|
|
Data::Output::Result::Hands::KeyPoint::Position2 positions1Object;
|
|
auto allPoints3 = value["Points"]["Point"];
|
|
for (auto value : allPoints3)
|
|
positions1Object.points3.push_back(value.asString());
|
|
keyPointObject.positions1.push_back(positions1Object);
|
|
}
|
|
resultsObject.hands.keyPoints.push_back(keyPointObject);
|
|
}
|
|
outputObject.results.push_back(resultsObject);
|
|
}
|
|
data_.outputs.push_back(outputObject);
|
|
}
|
|
auto metaObjectNode = dataNode["MetaObject"];
|
|
if(!metaObjectNode["Height"].isNull())
|
|
data_.metaObject.height = std::stoi(metaObjectNode["Height"].asString());
|
|
if(!metaObjectNode["Width"].isNull())
|
|
data_.metaObject.width = std::stoi(metaObjectNode["Width"].asString());
|
|
|
|
}
|
|
|
|
HandPostureResult::Data HandPostureResult::getData()const
|
|
{
|
|
return data_;
|
|
}
|
|
|