文章预览
介绍 在程序调用Onnx模型时,一般都会查看一下模型的属性、输入、输出信息,一般可以不看模型具体的信息。 可以使用Netron查看,Netron地址 https://netron.app/ 在线查看时需要有网,模型越大加载越慢。 大多时候只想快速查看一下模型的输入、输出信息,所以自己写了一个C#Onnx模型信息查看工具。 效果 Netron效果 项目 VS2022 .net framework 4.8 OpenCvSharp 4.8 Microsoft.ML.OnnxRuntime 1.16.2 代码 using Microsoft.ML.OnnxRuntime; using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace Onnx_Demo { public partial class frmMain : Form { public frmMain () { InitializeComponent(); } string fileFilter = "*.*|*.onnx;" ; string model_path; StringBuilder sb = new StringBuilder
………………………………