Ich versuche, von Bitmap zu Image (ImageBox) von EmguCV zu konvertieren, aber es zeigt mir das Problem Kann Typ 'System.Drawing.Bitmap' nicht implizit konvertieren zu 'Emgu.CV.IImage' mit this.captureImageBox.Image = val;
I EmguCV V3 bin mitkonvertieren Typ 'System.Drawing.Bitmap' zu 'Emgu.CV.IImage'
void SetPic(Bitmap val)
{
if (val != null)
{
this.captureImageBox.Image = val;
}
}
Severity Code Beschreibung Projektdatei Zeilenunterdrückung Staat Fehler CS0029 nicht implizit Typ konvertieren kann 'System.Drawing.Bitmap' auf ‚Emgu .CV.IImage '
Versuchen Sie, die folgende Antwort http://stackoverflow.com/a/6470375/6170142 –