Search found 2 matches

by christian.
2012-08-15T12:20:41-07:00
Forum: Developers
Topic: How to display an image in a control using ImageMagick.?
Replies: 1
Views: 5214

Re: How to display an image in a control using ImageMagick.?

Hey there,

in Magick++ you can write an image to a specific blob in memory . And use the Blob::data() and Blob::length() functions to get the data to your displaying control in MFC. Probably best to store it for that purpose in RGB format

image.magick( "RGB" );

and not JPEG as is proposed in ...
by christian.
2012-08-15T12:00:40-07:00
Forum: Developers
Topic: Processing YUV frames from a running GStreamer pipeline
Replies: 0
Views: 8894

Processing YUV frames from a running GStreamer pipeline

Hello there,

first of all this post is not a request for help, but meant to help others having the same task at hand. I just have a short question regarding memory handling at the end.

I have a C++ project where it is necessary to grap YUV 4:2:2 video frames from a running GStreamer pipeline and ...