Răsfoiți Sursa

Release ScreenEC.

sdk-team 3 ani în urmă
părinte
comite
8e5f42ce58

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1353
+1.36.1354

+ 1 - 0
imageprocess/include/alibabacloud/imageprocess/model/DetectRibFractureResult.h

@@ -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;

+ 2 - 0
imageprocess/src/model/DetectRibFractureResult.cc

@@ -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());