我试图从另一个图像中减去一个图像, 有点像这个:
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>
类型。 但我不知道该如何操作 。