c# - Create Images from existing image and display them in a PictureBox -
i have image like
image<bgr, byte> imageframe = capture.queryframe();
(actually webcam-stream shown in picturebox)
and want "extract" single rectangles (the coordinates given) , want display parts in seperated picturebox @ moment have mental block.
can give me hint?
i assume using emgucv , haven't tested these things..but may give lead.
instead of using picturebox use imagebox provided emgucv.so there won't need image conversion.
if want convert image,from emgucv documentation
the image class has tobitmap() function return bitmap object, can displayed on picturebox control using windows form
now have bitmap,if want select particular region bitmap,then followings links you.
Comments
Post a Comment