I have a framegrabber (Silicon Software ) which I managed to show the images from a pointer in memory buffer using OpenCV. now I want to create an application (Win32) and place the openCV window as a child of the main application window. Any body has any idea?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
if you want your own window, it's probably better, to skip the whole highgui stuff, and do your own blitting as well. have a look at the src of cvShowImage(), highgui/src/window_w32.cpp,l 1384, to see, what they're doing here |
|||
|
|
|
Don't know exactly what you mean by "child window", but you could grab the pixel information from OpenCV's IplImage format and convert it to whatever format you need it for your window. |
|||
|
|
|
I found the answer, it was soo easy. Just couple of line of code. here it is :
cv::namedWindow("test",cv::WINDOW_AUTOSIZE); |
|||
|
|