Nov 20, 2010 at 12:49pm
I´m working with opencv libraries, i need to put a bmp image in a specific location in a window. how do i do that?
Nov 23, 2010 at 6:01am
...
Last edited on Nov 23, 2010 at 6:03am
Nov 23, 2010 at 6:02am
you can use:
cvSaveImage("location", bmpImage);
For example:
IplImage *image = ???; // the image which comes from your code
cvSaveImage("c:/bmpImage.bmp", bmpImage);