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.

    crop image using c#

    how cut part of image in c#


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -