已合并 PR 25: 合并最新图像库,打通加载图像和算子流程图拖拽功能

![image.png](http://cntao-ap-v83/HMQ-Solution/7ff128fd-5cc6-4feb-9529-2a03b2895662/_apis/git/repositories/e2c5485f-4369-4ed9-9fb9-d087ca4e04b6/pullRequests/25/attachments/image.png)
This commit is contained in:
ZHANG Zhengxuan
2026-04-20 13:35:23 +08:00
31 changed files with 939 additions and 197 deletions
@@ -70,7 +70,7 @@ public class SuperResolutionProcessor : ImageProcessorBase
public override Image<Gray, byte> Process(Image<Gray, byte> inputImage)
{
string model = GetParameter<string>("Model");
int scale = int.Parse(GetParameter<string>("Scale"));
int scale = GetParameter<int>("Scale");
// 查找模型文件
string modelPath = FindModelFile(model, scale);
@@ -317,4 +317,4 @@ public class SuperResolutionProcessor : ImageProcessorBase
_logger.Warning("Model file not found: {Model}_x{Scale}.onnx", model, scale);
return string.Empty;
}
}
}