Răsfoiți Sursa

Update ScreenChestCT CalcCACS.

sdk-team 4 ani în urmă
părinte
comite
720c4910dd

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2022-06-20 Version: 1.36.1151
+- Update ScreenChestCT CalcCACS.
+
 2022-06-20 Version: 1.36.1150
 - Update MakeSuperResolutionImage.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1150
+1.36.1151

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

@@ -36,6 +36,7 @@ namespace AlibabaCloud
 				{
 					struct DetectionsItem
 					{
+						std::vector<std::string> calciumCenter;
 						float calciumVolume;
 						float calciumScore;
 						long calciumId;

+ 3 - 0
imageprocess/src/model/CalcCACSResult.cc

@@ -56,6 +56,9 @@ void CalcCACSResult::parse(const std::string &payload)
 			detectionsItemObject.calciumScore = std::stof(dataNodeDetectionsdetectionsItem["CalciumScore"].asString());
 		if(!dataNodeDetectionsdetectionsItem["CalciumVolume"].isNull())
 			detectionsItemObject.calciumVolume = std::stof(dataNodeDetectionsdetectionsItem["CalciumVolume"].asString());
+		auto allCalciumCenter = value["CalciumCenter"]["calciumCenter"];
+		for (auto value : allCalciumCenter)
+			detectionsItemObject.calciumCenter.push_back(value.asString());
 		data_.detections.push_back(detectionsItemObject);
 	}
 	if(!value["Code"].isNull())