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

ippiAlphaComp (Alpha Composition)

reportbase
Beginner
381 Views
ippiAlphaCompC_8u_ works great for a constant alpha.

However, I need to pass in an array of alphas, not a single alpha

Any ideas?. Heres the existing function:

ippiAlphaCompC_8u_AC4R,
( const Ipp8u* pSrc1, int src1Step,
Ipp8u alpha1,
const Ipp8u* pSrc2, int src2Step,
Ipp8u alpha2,
Ipp8u* pDst, int dstStep,
IppiSize roiSize,
IppiAlphaType alphaType ))

I need something like this:

ippiAlphaCompC_8u_AC4R_modified,
( const Ipp8u* pSrc1, int src1Step,
const Ipp8u* pSrc2, int src2Step,
Ipp8u* pDst, int dstStep,
Ipp8u* pAlpha,
IppiSize roiSize,
IppiAlphaType alphaType ))

The first buffer (pSrc1) would be composed against the alpha value.

The second buffer (pSrc2) would be composed against the inverse of that alpha value.

(pDst) would get the result.
(pAlpha) would be the array of alphas.





0 Kudos
4 Replies
Chao_Y_Intel
Moderator
381 Views

Hello,

How does AlphaComp_8u function work for you there? This function will use alpha values of
each pixel to combine images.

Thanks,
Chao

0 Kudos
reportbase
Beginner
381 Views
Quoting - Chao Y (Intel)

Hello,

How does AlphaComp_8u function work for you there? This function will use alpha values of
each pixel to combine images.

Thanks,
Chao


That one does not work either for a different reason.

It combines two rgba images, using the alpha values of each pixel, and interpolates the results.

I'm trying to render a font glyph, which has the following inputs:

1) grayscale image of the font glyph, which is just an array of unsigned char(s).
2) Color of the font glyph, which is just an rgb. (int)
3) The background image. Just an array of rgb(s).

I want to insert the font glyph onto the background.

0 Kudos
reportbase
Beginner
381 Views
Perhaps I should switch the question to a featuer request. It would appear to me to be only a small modification to the existing api. How would I go about doing that?
0 Kudos
Chao_Y_Intel
Moderator
381 Views

Hi,

Thanks for letting us know. I tracked this request for future consideration.

Regards,
Chao

0 Kudos
Reply