Convert BYTE buffer (0-255) to float buffer (0.0-1.0) - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T16:59:02Zhttp://stackoverflow.com/feeds/question/1043766http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-02Convert BYTE buffer (0-255) to float buffer (0.0-1.0)Veehmot2009-06-25T13:00:05Z2009-06-26T05:28:58Z
<p>How can I convert a BYTE buffer (from 0 to 255) to a float buffer (from 0.0 to 1.0)? Of course there should be a relation between the two values, eg: 0 in byte buffer will be .0.f in float buffer, 128 in byte buffer will be .5f in float buffer, 255 in byte buffer will be 1.f in float buffer.</p>
<p>Actually this is the code that I have:</p>
<pre><code>for (int y=0;y<height;y++) {
for (int x=0;x<width;x++) {
float* floatpixel = floatbuffer + (y * width + x) * 4;
BYTE* bytepixel = (bytebuffer + (y * width + x) * 4);
floatpixel[0] = bytepixel[0]/255.f;
floatpixel[1] = bytepixel[1]/255.f;
floatpixel[2] = bytepixel[2]/255.f;
floatpixel[3] = 1.0f; // A
}
}
</code></pre>
<p>This runs very slow. A friend of mine suggested me to use a conversion table, but I wanted to know if someone else can give me another approach.</p>
<p>Veehmot.</p>
http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1043821#10438211Answer by Konrad Rudolph for Convert BYTE buffer (0-255) to float buffer (0.0-1.0)Konrad Rudolph2009-06-25T13:11:26Z2009-06-25T13:11:26Z<blockquote>
<p>but I wanted to know if someone else can give me another approach.</p>
</blockquote>
<p>Essentially, no. Use the conversion table. It's a cheap, efficient solution.</p>
http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1043827#10438272Answer by Mats Fredriksson for Convert BYTE buffer (0-255) to float buffer (0.0-1.0)Mats Fredriksson2009-06-25T13:12:05Z2009-06-25T13:12:05Z<p>Use a static lookup table for this. When I worked in a computer graphics company we ended up having a hard coded lookup table for this that we linked in with the project.</p>
http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1043834#10438343Answer by moonshadow for Convert BYTE buffer (0-255) to float buffer (0.0-1.0)moonshadow2009-06-25T13:13:59Z2009-06-25T13:19:34Z<p>Whether you choose to use a lookup table or not, your code is doing a lot of work each loop iteration that it really does not need to - likely enough to overshadow the cost of the convert and multiply.</p>
<p>Declare your pointers restrict, and pointers you only read from const. Multiply by 1/255th instead of dividing by 255. Don't calculate the pointers in each iteration of the inner loop, just calculate initial values and increment them. Unroll the inner loop a few times. Use vector SIMD operations if your target supports it. Don't increment and compare with maximum, decrement and compare with zero instead.</p>
<p>Something like</p>
<pre><code>float* restrict floatpixel = floatbuffer;
BYTE const* restrict bytepixel = bytebuffer;
for( int size = width*height; size > 0; --size )
{
floatpixel[0] = bytepixel[0]*(1.f/255.f);
floatpixel[1] = bytepixel[1]*(1.f/255.f);
floatpixel[2] = bytepixel[2]*(1.f/255.f);
floatpixel[3] = 1.0f; // A
floatpixel += 4;
bytepixel += 4;
}
</code></pre>
<p>would be a start.</p>
http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1043839#10438390Answer by laalto for Convert BYTE buffer (0-255) to float buffer (0.0-1.0)laalto2009-06-25T13:14:41Z2009-06-25T13:14:41Z<p>Yes, a lookup table is definitely faster than doing a lot of divisions in a loop. Just generate a table of 256 precomputed float values and use the byte value to index that table.</p>
<p>You can also optimize the loop a little by removing the index computation and just do something like</p>
<pre><code>float *floatpixel = floatbuffer;
BYTE *bytepixel = bytebuffer;
for (...) {
*floatpixel++ = float_table[*bytepixel++];
*floatpixel++ = float_table[*bytepixel++];
*floatpixel++ = float_table[*bytepixel++];
*floatpixel++ = 1.0f;
}
</code></pre>
http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1043873#10438732Answer by xtofl for Convert BYTE buffer (0-255) to float buffer (0.0-1.0)xtofl2009-06-25T13:19:16Z2009-06-25T13:19:16Z<p>You need to find out what the bottleneck is: </p>
<ul>
<li>if you iterate your data tables in the 'wrong' direction, you constantly hit a cache miss. No lookup will ever help get around that.</li>
<li>if your processor is slower in scaling than in looking up, you can boost performance by looking up, provided the lookup table fits it's cache.</li>
</ul>
<p>Another tip:</p>
<pre><code>struct Scale {
BYTE operator()( const float f ) const { return f * 1./255; }
};
std::transform( float_table, float_table + itssize, floatpixel, Scale() );
</code></pre>
http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1047500#10475000Answer by Rodyland for Convert BYTE buffer (0-255) to float buffer (0.0-1.0)Rodyland2009-06-26T05:28:58Z2009-06-26T05:28:58Z<p>Don't calculate 1/255 every time. Don't know if a compiler will be smart enough to remove this. Calculate it once and reapply it every time. Even better, define it as a constant.</p>