|
|
@@ -210,8 +210,6 @@ public class RabbitMqListener {
|
|
|
String algorithm = message.getAlgorithm();
|
|
|
//0表示有4k图,1表示没有
|
|
|
String resolution = message.getResolution();
|
|
|
- //判断调用V2还是V3版本的算法
|
|
|
- String buildType = ObjectUtils.isEmpty(message.getBuildType()) ? "V2" : message.getBuildType();
|
|
|
|
|
|
buildSceneResult.setCameraType(cameraType);
|
|
|
buildSceneResult.setNum(num);
|
|
|
@@ -271,7 +269,7 @@ public class RabbitMqListener {
|
|
|
//计算模型并返回需要上传oss的文件集合
|
|
|
SysConstants.callingNum.add(num);
|
|
|
try {
|
|
|
- ComputerUtil.computer(num, path, buildType);
|
|
|
+ ComputerUtil.computer(num, path, "V3");
|
|
|
}finally {
|
|
|
SysConstants.callingNum.remove(num);
|
|
|
}
|