Open bbhxwl opened 3 months ago
Hi @bbhxwl,
Can you clarify your question? I assume you mean why doesn't Microsoft.ML.OnnxTransformer or OnnxRuntime packages have a ResizeImages transform.
If so, it's a data transformation that's not specific to ONNX. You can find that as part of the Microsoft.ML.ImageAnalytics package.
Hi @bbhxwl,
Can you clarify your question? I assume you mean why doesn't Microsoft.ML.OnnxTransformer or OnnxRuntime packages have a ResizeImages transform.
If so, it's a data transformation that's not specific to ONNX. You can find that as part of the Microsoft.ML.ImageAnalytics package.
Stream stream = new FileStream("e7b1a568c53245928a5146efd401c5e5.jpg", FileMode.Open);
Yolo a = new Yolo("yolov5x.onnx");
var list=a.Prediction(stream);
There seems to be an issue with my post-processing image. Can you guide me?
Hi @bbhxwl,
I would encourage you to take a look at this tutorial. It's using an older version of YOLO, but the general concepts are similar.
https://learn.microsoft.com/dotnet/machine-learning/tutorials/object-detection-onnx
Why is there no ResizeImages method?