Hi,
Using ippiConvFull_32f_C3R yeilds very large luminance values. Using a softclip algorithm gives me aesthetic results, but I'd like to inquire about proper post scaling methods for ippiConvFull.
Any thoughts?
Best,
Ryan
Using ippiConvFull_32f_C3R yeilds very large luminance values. Using a softclip algorithm gives me aesthetic results, but I'd like to inquire about proper post scaling methods for ippiConvFull.
Any thoughts?
Best,
Ryan
链接已复制
3 回复数
Hi,
I actually just worked that out. Thank you for replying.
Here's the code I used for anyone else who's wondering:
I actually just worked that out. Thank you for replying.
Here's the code I used for anyone else who's wondering:
[cpp] //Calculate Sum of Kernel ippiSum_32f_C3R(Ipp_Ker, Ker_StepBytes, Ker_Size, KerScaled, ippAlgHintFast); // Clamp KerScale to 1. for (i=0; i<3; i++) { if (KerScaled > 1) KerScalef = float(1) / KerScaled[0]; else KerScalef = 1; } // Multipy Ker by Inverse of Sum ippiMulC_32f_C3IR(KerScalef, Ipp_Ker, Ker_StepBytes, Ker_Size);[/cpp]
