Search found 1 match

by fzuend
2011-05-06T02:18:42-07:00
Forum: Magick++
Topic: Read RAW Image
Replies: 1
Views: 17588

Read RAW Image

Hi everyone

I need to convert 8 Bit UYVY 4:2:2 images to jpeg in my code. I can do this easily using

convert -size 1920x1080 -depth 8 UYVY:frame1.raw frame1.jpg

This works well. However, if I write in the code

Image image;
image.size("1920x1080");
image.depth(8);
image.magick("UYVY");
image ...