Release ScreenEC.

This commit is contained in:
sdk-team
2022-11-30 07:05:15 +00:00
parent 62720f38c2
commit 8e5f42ce58
3 changed files with 4 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.1353
1.36.1354

View File

@@ -39,6 +39,7 @@ namespace AlibabaCloud
float fractureConfidence;
std::string fractureCategory;
std::vector<std::string> coordinateImage;
std::string fracSOPInstanceUID;
std::vector<std::string> coordinates;
std::string fractureLocation;
long fractureSegment;

View File

@@ -56,6 +56,8 @@ void DetectRibFractureResult::parse(const std::string &payload)
detectionsItemObject.fractureLocation = dataNodeDetectionsDetectionsItem["FractureLocation"].asString();
if(!dataNodeDetectionsDetectionsItem["FractureSegment"].isNull())
detectionsItemObject.fractureSegment = std::stol(dataNodeDetectionsDetectionsItem["FractureSegment"].asString());
if(!dataNodeDetectionsDetectionsItem["FracSOPInstanceUID"].isNull())
detectionsItemObject.fracSOPInstanceUID = dataNodeDetectionsDetectionsItem["FracSOPInstanceUID"].asString();
auto allCoordinates = value["Coordinates"]["Coordinates"];
for (auto value : allCoordinates)
detectionsItemObject.coordinates.push_back(value.asString());