I want to display an IPLimage / MAT (opencv) formats on a MFC picture box in Visual C++
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Picture boxes can only display bitmaps I think. You'll need to convert IPLimage to a bitmap. Assuming you can first convert IPLimage to a buffer of RGB values, see Creating HBITMAP from memory buffer Then when you get the HBITMAP, you'll need to load it in the Picture Box. Assuming by picture box you mean a static control, add
|
|||
|
|