专栏名称: dotNET跨平台
专注于.NET Core的技术传播。在这里你可以谈微软.NET,Mono的跨平台开发技术。在这里可以让你的.NET项目有新的思路,不局限于微软的技术栈,横跨Windows,Linux 主流平台
今天看啥  ›  专栏  ›  dotNET跨平台

C# OnnxRuntime DIS高精度图像二类分割

dotNET跨平台  · 公众号  ·  · 2024-09-27 08:00

文章预览

说明 This is the repo for our new project Highly Accurate Dichotomous Image Segmentation github地址: https://github.com/xuebinqin/DIS 效果 模型信息 Inputs ------------------------- name:input tensor:Float[1, 3, 480, 640] --------------------------------------------------------------- Outputs ------------------------- name:output tensor:Float[1, 1, 480, 640] --------------------------------------------------------------- 项目 VS2022 .net framework 4.8 OpenCvSharp 4.8 Microsoft.ML.OnnxRuntime 1.16.2 代码 using Microsoft.ML.OnnxRuntime.Tensors; using Microsoft.ML.OnnxRuntime; using OpenCvSharp; using System; using System.Collections.Generic; using System.Windows.Forms; using System.Linq; using System.Drawing; using static System.Net.Mime.MediaTypeNames;   namespace Onnx_Demo {     public partial class frmMain : Form     {         public  frmMain ()         {             InitializeComponent();      ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览