opencv

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?
...
Last edited on
you can use:

cvSaveImage("location", bmpImage);

For example:

IplImage *image = ???; // the image which comes from your code

cvSaveImage("c:/bmpImage.bmp", bmpImage);
Topic archived. No new replies allowed.