I am using vs 2013 and I have a opencvsharp 2* from nuget I have these codes:
public List<IplImage> text = new List<IplImage>();
...
IplImage bit = text[0];
picturebox.Image = text[0].ToBitmap();
But this lines not accepted :
picturebox.Image = text[0].ToBitmap()
;
ToBitmap is never come Any helps?