Search found 2 matches
- 2013-04-22T06:20:11-07:00
- Forum: MagickWand
- Topic: Taking a Image from OpenCV to a MagickWand
- Replies: 1
- Views: 11955
Re: Taking a Image from OpenCV to a MagickWand
After spending ages on this I get the answer 30 minutes after I post on the forum. Answer is as followings: ExceptionInfo info; GetExceptionInfo(&info); Image* myImage = ConstituteImage(FreshImage.width, FreshImage.height, "RGB", CharPixel, FreshImage.imageData, &info); MagickWand *wand ...
- 2013-04-22T05:55:58-07:00
- Forum: MagickWand
- Topic: Taking a Image from OpenCV to a MagickWand
- Replies: 1
- Views: 11955
Taking a Image from OpenCV to a MagickWand
Hello there, I'm currently using OpenCV to capture some live images from a webcam and I need to save out one of the images to use with one of your MagickWands. I've tried several different suggestions on the internet but hoped someone here could shed some light on the subject. I've tried this which ...