English 中文(简体)
如何将图像 < gray, Byte> 转换为图像 < gray, floor >?
原标题:How to convert Image<Gray, Byte> to Image<Gray, float>?
  • 时间:2012-05-24 05:35:31
  •  标签:
  • c#
  • emgucv

我试图从另一个图像中减去一个图像, 有点像这个:

Image<Gray, float> result, secondImage;
Image<Gray, byte> firstImage;
result = firstImage - secondImage;

但它犯了一个错误

Operator  -  cannot be applied to operands of type  Emgu.CV.Image<Emgu.CV.Structure.Gray,byte>  and  Emgu.CV.Image<Emgu.CV.Structure.Gray,float> 

也许我需要将第一个图像转换为 Imaage< gray, floor> 类型。 但我不知道该如何操作 。

最佳回答

引自,“http://www.emgu.com/wiki/index.php/work_with_images#Color_and_Depeh_Consversion>,rel=“noreferrer”>文件:

<强度 > 彩色和深度转换

在不同颜色和深度之间转换图像是简单的。例如,如果您有图像 Ing1 并且想要将其转换成灰度的 Single 灰度图像,您需要做的就是

Image<Gray, Single> img2 = img1.Convert<Gray, Single>();

所以,在你的情况中,你可以使用

result = firstImage.Convert<Gray, float>() - secondImage;
问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签