artur_simon
artur_simon

Reputation: 115

Load an Image in EmguCV's Imagebox, damned IImage

I have managed to load an Image on the control only by right-click' selecting the "load image" option while in runtime.

I want to know if there's a way to load it passing specifically the Image object, since when I try doing as I normally would, setting it like imagebox.Image = (...) would give an error because the imagebox.Image is a "IImage" object.

any tips? thanks :)

Upvotes: 0

Views: 2759

Answers (1)

Newbie
Newbie

Reputation: 21

You can try this:

Image<BGR, Byte> rstImg = new Image<BGR, Byte>(imageBox.Image.Bitmap);
imageBox.Image = rstImg;

Upvotes: 2

Related Questions