Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

YUV422...16 bits

hcostelha
Beginner
414 Views
I read the manual, but didn't understood it very well. When we see "8u_C3" in the function name, it's beacause the function receives a 24 bit image.

When we see "16u_C3" in the function name, does this always mean that the function receives a tree channel with a 16 bit packed image (with 16 bit per pixel)?

Thanks in advanced for your reply.

Hugo Costelha
0 Kudos
1 Reply
Intel_C_Intel
Employee
414 Views

Hi,

The modificator C - mean pixel interleaved format, while as P means plane interleaved format. For example,

C3 image looks like
abcabcabc
abcabcabc

but P3 image looks like
aaa
aaa
bbb
bbb
ccc
ccc

8u and 16u means data type for one channel sample. In our sample, 8u_C3 means all a,b and c should be 8u values, and if 16u_C3 theyhave tobe 16u values.

Regards,
Vladimir

0 Kudos
Reply