- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello all,
I'm new to IPP and I'm trying to write a program that saves a snapshot of a video as Jpeg.
I'm using the code from the example jpegview.
The video is in YUV422 format, coming from a usb camera. The capture software is based on MS DirectShow.
I'm copying two images one above the other, converting them to RGB:
Then I initialize my Image with doubled height:
The thing is when a save it, the colors are completelly wrong. I've tried to use BGR and RGB both failed.
I'm not sure what I'm doing wrong. Here are the jpeg settings:
tia,
Marco
I'm new to IPP and I'm trying to write a program that saves a snapshot of a video as Jpeg.
I'm using the code from the example jpegview.
The video is in YUV422 format, coming from a usb camera. The capture software is based on MS DirectShow.
I'm copying two images one above the other, converting them to RGB:
CIppImage * pImage = new CIppImage();Note: I've tried ippiYUV422ToRGB_8u_C2C3R as well.
Ipp8u* pAux = ippiMalloc_8u_C3(s.width, s.height * 2, &auxStep);
Ipp8u* pMiddle = pAux + (auxStep * s.height);
ippError = ippiYCbCr422ToBGR_8u_C2C3R((Ipp8u*)imaging.gpLeftBuffer, gDstStep, pAux, auxStep, s);
ippError = ippiYCbCr422ToBGR_8u_C2C3R((Ipp8u*)imaging.gpRightBuffer, gDstStep, pMiddle, auxStep, s);
Then I initialize my Image with doubled height:
CIppImage * pImage = new CIppImage();And copy the RGB data into it:
s.height *= 2;
success = pImage->Alloc(s, 3, 8);
pImage->CopyFrom(pAux, auxStep, s);
The thing is when a save it, the colors are completelly wrong. I've tried to use BGR and RGB both failed.
I'm not sure what I'm doing wrong. Here are the jpeg settings:
pJpegSettings->quality = 8;
pJpegSettings->restart_interval = 0;
pJpegSettings->huffman_opt = 0;
pJpegSettings->point_transform = 0;
pJpegSettings->predictor = 1;
pJpegSettings->use_qdct = 1;
pJpegSettings->mode = JPEG_BASELINE;
pJpegSettings->color = JC_UNKNOWN;
pJpegSettings->sampling = JS_422;
pJpegSettings->dct_scale = JD_1_1;
pJpegSettings->comment_size = 0;Do you guys have any idea what is the problem here ?
tia,
Marco
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Marco,
If your input format is YUY2 (YCbCr422) then you can use IPP JPEG codec directly. You need to set input color as JC_YCBCR and input sampling as JS_422. Note, codec do not support resampling, that means you also need to specify JPEG color as JC_YCBCR and JPEG sampling as JS_422.
Be aware that quality level you are using (8) is very low. You will get lot of compression artifacts as a result. Of course compression ration will be higher. Usually, level 75 provides good tradeoff for generic applications.
Regards,
Vladimir
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page