byte[] 转 Emgu.CV.Image<Rgb, Byte>
时间: 2024-05-02 19:19:31 浏览: 80
将图片转换为 bytes格式
可以使用以下代码实现:
```
byte[] bytes = // your byte array
MemoryStream ms = new MemoryStream(bytes);
Image<Rgb, Byte> image = new Image<Rgb, Byte>(ms);
```
注意:在使用 Emgu.CV 库时,需要首先引入以下命名空间:
```csharp
using Emgu.CV;
using Emgu.CV.Structure;
using System.IO;
```
阅读全文