vote up 2 vote down star
1

I initially was looking for a way convert byte to float, and found answers that indicate the fastest was is to create a lookup table.

So i was wondering if anyone know of a pre-existing lookup table that i can use.

flag

What language are you using? – jeffamaphone Jul 6 at 21:13
i am using objective c – ReachConnection Jul 6 at 22:07
I am using objective c so this what i wrote so far creating the lookup table lookupTable = new float [256]; for (int i = 0; i < 256; i++) { lookupTable[i] = (float) i /255; NSLog(@"lookupTable[%d]: %f",i,lookupTable[i]); } I get a different answer from another poster that I am not 100 % sure on, can you really perform direct type casting from byte to float. i doubt it that it is revelant to my case because i need the float to range in value from 0 to 1 for YUV to RGB conversion – ReachConnection Jul 6 at 22:28
Since you need the value to be 0.0 - 1.0, there will be floating point division involved. It depends a little on the CPU involved, but it's safe to say using a lookup table would be faster. See my updated answer as well. – Thorarin Jul 7 at 5:26

2 Answers

vote up 4 vote down check

Normally you would initialize the lookup table using a few lines of code and a for loop or whatever suits your purpose. It's only useful if you're doing a large number of conversions on a finite number of possible inputs.

The example below is only to demonstrate the basic technique of building and using a lookup table. Unless there is more math involved, there would actually be a performance hit if you implemented this (see below).

float[] lookupTable = new float[256];
for (int i = 0; i < 256; i++)
{
    lookupTable[i] = (float)i;
}

float convertedValue = lookupTable[byteValue];

The code is C#, I have no experience with objective C. In C++ the array declaration would be a bit different, but you get the idea.

When to use a lookup table?

In the above example, there is no performance gain, because no calculation is involved, just a conversion from byte to float. Consider the case where floating point division is involved (like your case):

    lookupTable[i] = i / 255f;

In this case, the lookup table should be faster than using direct calculation. The more complex the math (trigonometry, etc.), the bigger the performance gain. Another common usage is gamma correcting an image (exponential function).

link|flag
i m using the lookup table for converting raw YUV frame bytes into RGB float. thanks for the code. – ReachConnection Jul 6 at 21:28
vote up 2 vote down

Lookup table? We don't need no stinkin' lookup tables!

float floatVal = (float)byteVal;
link|flag
can you really perform a direct type cast? – ReachConnection Jul 6 at 22:06
It's not a type cast, but rather a conversion. It just looks the same as a cast. – Thorarin Jul 7 at 4:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.