当前位置:   article > 正文

使用ML.NET+ONNX预训练模型整活B站经典《华强买瓜》

onnx 模型训练

前言

最近在看微软开源的机器学习框架ML.NET使用别人的预训练模型(开放神经网络交换格式.onnx)来识别图像,然后逛github发现一个好玩的repo。决定整活一期博客。

首先还是稍微科普一下机器学习相关的知识,这一块.NET虽然很早就开源了ML.NET框架,甚至在官方的ML.NET开源之前,就有一些三方社区的开源实现比如早期的AForge.NET实现。以及后来的基于python著名的神经网络框架tensorflow迁移的tensorflow.net亦或者是pytorch迁移的torchsharp来实现C#版本的深度学习,但是毕竟C#确实天生并不适合用来搞机器学习/深度学习,AI这一块也一直都是python的基本盘。但是不适合并不代表没有方案,现在AI逐渐普及的今天,我们普通的开发者依然可以使用一些别人训练好的模型来做一些应用落地。

环境准备

今天我们会用到一些训练好的模型来实现我们的目的,需要准备以下环境和工具:

1、安装有.NET5或者6的windows开发环境

2、netron 用于解析模型的参数。
下载地址:https://t.ly/8iEk8

3、ffmpeg 用于视频处理
下载地址:https://t.ly/ro0G

4、onnx预训练udnie、super-resolution

udnie模型
下载地址:https://t.ly/0cUt

super-resolution模型
下载地址:https://t.ly/rnsi(需要解压提取内部的onnx文件)

操作流程

1、首先我们将目标视频(我这里就用B站经典短视频《华强买瓜》为例)通过ffmpeg转换成普通的一帧一帧的图片

2、通过ML.NET加载【神经风格转换预训练模型】将每一帧原图迁移到新的风格(艺术风格:udnie,抽象主义)。

3、由于2只能将图片迁移到固定的240240格式,所以我们还需要通过ML.NET加载【超分辨率预训练模型】将每一帧图片进行超分辨率放大得到一张672672的图片

4、通过ffmpeg将新的图片合并成新的视频

首先先看看成品(这里我转换成gif方便演示):

原版视频《华强买瓜》 1280*720

e2583168caff98d140cebf38da6fcfee.gif

迁移后的抽象艺术版本 224*224

1e1e451b100ebb31398222438f3f58b3.gif

超分辨放大后的版本 672*672

6d5b841265242509ee9bd3c99850c000.gif

接着我们看看如何一步一步来实现这个流程的

首先我们新建一个空白文件夹,将下载好的ffmpeg.exe和准备要处理的mp4视频文件放进这个空白文件夹

接着我们需要从视频中分离音频文件,用于后期合成视频时把音频合成回去,否则视频会没有声音,打开控制台CD到刚才的目录,执行命令:

b9ab8a617523d7d6d0a128a89ec02a4e.png

然后我们从视频中将每一帧拆解成一张一张的jpg图片,这里首先要创建一个img子文件夹,否则会报错。另外我选择的r 25意思就是每秒25帧。如果你的视频不是每秒25帧(右键-属性-详细信息-帧速率)则自行根据文件调整,最后合成的时候也需要按照这个帧率合成新的视频:

d53ee08d34d1be006ab5d29a476f5be9.png

到这里为止,我们就将图片和音频拆解出来了,接下来准备编码,首先我们打开VS创建一个控制台程序,引入nuget包:

57c8626cf415db659e528d9720073b46.png

接着我们创建一个一个类文件用于加载模型以及完成相应的图片处理,在此之前我们需要使用安装好的netron来打开这两个onnx模型,查询他们的输入输出值,打开netron选择file-open,然后选择第一个模型udnie-9.onnx,点击input,可以看到右边已经展示出了这个模型的输入和输出项,接着我们创建类的时候,这里需要这一些数字。

00b22c33b2a67e05ea19a447a1530ea0.png

接着我们打开VS创建好的项目,把我们的两个onnx模型引入进去。接着编写如下代码:

首先定义一个session用于加下onnx模型

static InferenceSession styleTransferSession = new InferenceSession("model/udnie-9.onnx");

接着我们创建一个方法调用这个模型

  1. public static Bitmap ProcessStyleTransfer(Bitmap originBmp)
  2. {
  3.   //根据netron得到的input,我们在这里构建对应的输入张量
  4.   var input = new DenseTensor<float>(new[] { 13224224 });
  5.   //将bitmap转换成input
  6.   Tool.BitmapToTensor(originBmp, 224224, ref input, true);
  7.   //接着调用模型得到迁移后的张量output
  8.   using var results = styleTransferSession.Run(new[] { NamedOnnxValue.CreateFromTensor("input1", input) });
  9.   if (results.FirstOrDefault()?.Value is not Tensor<float> output)
  10.       throw new ApplicationException("无法处理图片");
  11.   //由于模型输出的是3*224*224的张量,所以这里只能构建出224*224的图片
  12.   return Tool.TensorToBitmap(output, 224224);
  13. }

其实到这一步神经风格迁移就完成了,最后的bitmap就是迁移后的新图片,我们只需要调用bitmap.save即可保存到磁盘上

接着我们创建超分辨率模型的方法来,其实同上面的调用非常类似的代码

这里唯一需要注意的是超分辨率提取并非采用RGB直接放大,而是用了YCbCr来放大,所以这里需要有一个转换,原文在这里:https://github.com/onnx/models/tree/main/vision/super_resolution/sub_pixel_cnn_2016

static InferenceSession superResolutionSession = new InferenceSession("model/super_resolution.onnx");
  1. public static Bitmap ProcessSuperResolution(Bitmap originBmp)
  2. {
  3.     //根据netron得到的input,我们在这里构建对应的输入张量,由于该模型并非采用RGB而是YCbCr,所以中间会做一些转换,不过整体流程和上一个类似
  4.     var input = new DenseTensor<float>(new[] { 11224224 });
  5.     //将bitmap转换成input
  6.     Tool.BitmapToTensor(originBmp, 224224, ref input, true);
  7.     //由于模型处理Y值,剩下的Cb和Cr需要我们单独调用System.Drawing.Common双三次插值算法放大得到对应的Cb和Cr值
  8.     var inputCbCr = new DenseTensor<float>(new[] { 1672672 });
  9.     inputCbCr = Tool.ResizeGetCbCr(originBmp, 672672);
  10.     //接着调用模型得到超分重建后的张量output
  11.     using var results = superResolutionSession.Run(new[] { NamedOnnxValue.CreateFromTensor("input", input) });
  12.     if (results.FirstOrDefault()?.Value is not Tensor<float> output)
  13.         throw new ApplicationException("无法处理图片");
  14.     //创建一个新的bitmap用于填充迁移后的像素,这里需要通过Y+CbCr转换为RGB填充
  15.     return Tool.TensorToBitmap(output, 224224,false, inputCbCr);
  16. }

其实基本上到这两步,我们的整个核心代码就完成了。剩余的部分只是一些图片处理的代码。接着我们要做的就是在Program.cs调用它得到迁移后的图片

  1. Directory.CreateDirectory("new img path");
  2. foreach (var path in Directory.GetFiles("old img path"))
  3. {
  4.     //由于ffmpeg拆帧后的图片就是按照帧率从1开始排序好的图片,所以我们只需要将上一层的文件夹名字修改一下即可得到要替换的新文件路径 like: D://img/1.jpeg -> D://newimg/1.jpeg
  5.     var newpath = path.Replace("old img path""new img path");
  6.     using var originBitmap = new Bitmap(Image.FromFile(path));
  7.     using var transferBitmap = OnnxModelManager.ProcessStyleTransfer(originBitmap);
  8.     using var reSizeBitmap = OnnxModelManager.ProcessSuperResolution(transferBitmap);
  9.     reSizeBitmap.Save(newpath);
  10. }

接着F5 run,然后静待,一般要转换20分钟左右(cpu i5)基本就转换完成了。最后我们只需要再使用工具合成新的视频(或者gif)

./ffmpeg -f image2 -i newimg/%d.jpeg -i 1.aac -map 0:0 -map 1:a -r 25 -shortest output.mp4
  1. 1 internal class Tool
  2.   2     {
  3.   3         /// <summary>
  4.   4         /// 将bitmap转换为tensor
  5.   5         /// </summary>
  6.   6         /// <param name="bitmap"></param>
  7.   7         /// <returns></returns>
  8.   8         public static void BitmapToTensor(Bitmap originBmp, int resizeWidth, int resizeHeight, ref DenseTensor<float> input, bool toRGB)
  9.   9         {
  10.  10             using var inputBmp = new Bitmap(resizeWidth, resizeHeight);
  11.  11             using Graphics g = Graphics.FromImage(inputBmp);
  12.  12             g.DrawImage(originBmp, 00, resizeWidth, resizeHeight);
  13.  13             g.Save();
  14.  14             for (var y = 0; y < inputBmp.Height; y++)
  15.  15             {
  16.  16                 for (var x = 0; x < inputBmp.Width; x++)
  17.  17                 {
  18.  18                     var color = inputBmp.GetPixel(x, y);
  19.  19                     if (toRGB)
  20.  20                     {
  21.  21                         input[00, y, x] = color.R;
  22.  22                         input[01, y, x] = color.G;
  23.  23                         input[02, y, x] = color.B;
  24.  24                     }
  25.  25                     else
  26.  26                     {
  27.  27                         //将RGB转成YCbCr,此处仅保留Y值用于超分辨率放大
  28.  28                         var ycbcr = RGBToYCbCr(color);
  29.  29                         input[00, y, x] = ycbcr.Y;
  30.  30                     }
  31.  31                 }
  32.  32             }
  33.  33         }
  34.  34         /// <summary>
  35.  35         /// 将tensor转换成对应的bitmap
  36.  36         /// </summary>
  37.  37         /// <param name="output"></param>
  38.  38         /// <returns></returns>
  39.  39         public static Bitmap TensorToBitmap(Tensor<float> output, int width, int height, bool toRGB = true, Tensor<float> inputCbCr = null)
  40.  40         {
  41.  41             //创建一个新的bitmap用于填充迁移后的像素
  42.  42             var newBmp = new Bitmap(width, height);
  43.  43             for (var y = 0; y < newBmp.Height; y++)
  44.  44             {
  45.  45                 for (var x = 0; x < newBmp.Width; x++)
  46.  46                 {
  47.  47                     if (toRGB)
  48.  48                     {
  49.  49                         //由于神经风格迁移可能存在异常值,所以我们需要将迁移后的RGB值确保只在0-255这个区间内,否则会报错
  50.  50                         var color = Color.FromArgb((byte)Math.Clamp(output[00, y, x], 0255), (byte)Math.Clamp(output[01, y, x], 0255), (byte)Math.Clamp(output[02, y, x], 0255));
  51.  51                         newBmp.SetPixel(x, y, color);
  52.  52                     }
  53.  53                     else
  54.  54                     {
  55.  55                         //分别将模型推理得出的Y值以及我们通过双三次插值得到的Cr、Cb值转换为对应的RGB色
  56.  56                         var color = YCbCrToRGB(output[00, y, x], inputCbCr[0, y, x], inputCbCr[1, y, x]);
  57.  57                         newBmp.SetPixel(x, y, color);
  58.  58                     }
  59.  59                 }
  60.  60             }
  61.  61             return newBmp;
  62.  62         }
  63.  63         /// <summary>
  64.  64         /// RGB转YCbCr
  65.  65         /// </summary>
  66.  66         public static (float Y, float Cb, float Cr) RGBToYCbCr(Color color)
  67.  67         {
  68.  68             float fr = (float)color.R / 255;
  69.  69             float fg = (float)color.G / 255;
  70.  70             float fb = (float)color.B / 255;
  71.  71             return ((float)(0.2989 * fr + 0.5866 * fg + 0.1145 * fb), (float)(-0.1687 * fr - 0.3313 * fg + 0.5000 * fb), (float)(0.5000 * fr - 0.4184 * fg - 0.0816 * fb));
  72.  72         }
  73.  73         /// <summary>
  74.  74         /// YCbCr转RGB
  75.  75         /// </summary>
  76.  76         public static Color YCbCrToRGB(float Y, float Cb, float Cr)
  77.  77         {
  78.  78             return Color.FromArgb((byte)Math.Clamp(Math.Max(0.0f, Math.Min(1.0f, (float)(Y + 0.0000 * Cb + 1.4022 * Cr))) * 2550255),
  79.  79                 (byte)Math.Clamp(Math.Max(0.0f, Math.Min(1.0f, (float)(Y - 0.3456 * Cb - 0.7145 * Cr))) * 2550255),
  80.  80                 (byte)Math.Clamp(Math.Max(0.0f, Math.Min(1.0f, (float)(Y + 1.7710 * Cb + 0.0000 * Cr))) * 2550255)
  81.  81                 );
  82.  82         }
  83.  83         /// <summary>
  84.  84         /// 双三次插值提取CbCr值
  85.  85         /// </summary>
  86.  86         public static DenseTensor<float> ResizeGetCbCr(Bitmap original, int newWidth, int newHeight)
  87.  87         {
  88.  88             var cbcr = new DenseTensor<float>(new[] { 2, newWidth, newHeight });
  89.  89             using var bitmap = new Bitmap(newWidth, newHeight);
  90.  90             using var g = Graphics.FromImage(bitmap);
  91.  91             g.InterpolationMode = InterpolationMode.HighQualityBicubic;
  92.  92             g.SmoothingMode = SmoothingMode.HighQuality;
  93.  93             g.DrawImage(original, new Rectangle(00, newWidth, newHeight),
  94.  94                 new Rectangle(00, original.Width, original.Height), GraphicsUnit.Pixel);
  95.  95             g.Dispose();
  96.  96             for (var y = 0; y < bitmap.Width; y++)
  97.  97             {
  98.  98                 for (var x = 0; x < bitmap.Height; x++)
  99.  99                 {
  100. 100                     var color = bitmap.GetPixel(x, y);
  101. 101                     var ycbcr = RGBToYCbCr(color);
  102. 102                     cbcr[0, y, x] = ycbcr.Cb;
  103. 103                     cbcr[1, y, x] = ycbcr.Cr;
  104. 104                 }
  105. 105             }
  106. 106             return cbcr;
  107. 107         }
  108. 108     }

总结

这一期整活基本到此就结束了,虽然只是调用了两个小模型搞着玩,但是其实只要能搞到业界主流的开源预训练模型,其实可以解决很多实际的商业场景,比如我们最近在使用美团开源的yolov6模型做一些图像对象检测来落地就是一个很好的例子这里就不再展开。另外微软也承诺ML.NET的RoadMap会包含对预训练模型的迁移学习能力,这样我们可以通过通用的预训练模型根据我们自己的定制化场景只需要提供小规模数据集即可完成特定场景的迁移学习来提高模型对特定场景问题的解决能力。今天就到这里吧,下次再见。

作者:a1010

原文:https://www.cnblogs.com/gmmy/p/16433499.html

END

aa70f08449953bb08a8272f026b48d94.gif

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/1019785
推荐阅读
相关标签
  

闽ICP备14008679号