私は次のように、ある画像を別の画像から差し引こうとしています。
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>'
たぶん私はfirstImageをImage<Gray, float>
タイプに変換する必要があります。しかし、私はそれを行う方法がわかりません。