Casting an array of unsigned chars to an array of floats - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T02:19:36Z http://stackoverflow.com/feeds/question/825344 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats 1 Casting an array of unsigned chars to an array of floats miki 2009-05-05T15:11:46Z 2009-05-05T18:29:40Z <p>Hi.</p> <p>What is the best way of converting a unsigned char array to a float array in c++?</p> <p>I presently have a for loop as follows</p> <pre><code>for (i=0 ;i&lt; len; i++) float_buff[i]= (float) char_buff[i]; </code></pre> <p>I also need to reverse the procedure, i.e convert from unsigned char to float (float to 8bit conversion)</p> <pre><code>for (i=0 ;i&lt; len; i++) char_buff[i]= (unsigned char) float_buff[i]; </code></pre> <p>Any advice would be appreciated</p> <p>Thanks</p> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825368#825368 2 Answer by Gal Goldman for Casting an array of unsigned chars to an array of floats Gal Goldman 2009-05-05T15:15:55Z 2009-05-05T15:15:55Z <p>Your solution seems right, though on the way back, you might lose the floating digits in the casting.</p> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825378#825378 2 Answer by JerSchneid for Casting an array of unsigned chars to an array of floats JerSchneid 2009-05-05T15:17:54Z 2009-05-05T15:17:54Z <p>For what purpose are you doing this? Shoving a float into a char doesn't really make sense. On most platforms a float will be 4 bytes and represent a floating point number, where as a char will be 1 byte and often represents a single character. You'll lose 3 bytes of data trying to shove a float into a char, right?</p> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825381#825381 7 Answer by Reed Copsey for Casting an array of unsigned chars to an array of floats Reed Copsey 2009-05-05T15:18:17Z 2009-05-05T15:18:17Z <p>Your solution is pretty much the best option, however, I would consider switching to:</p> <pre><code>char_buff[i]= static_cast&lt;unsigned char&gt;(float_buff[i]); </code></pre> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825411#825411 0 Answer by Dan for Casting an array of unsigned chars to an array of floats Dan 2009-05-05T15:22:31Z 2009-05-05T15:22:31Z <p>If you are dealing with very large arrays and performance is essential then the following may prove slightly more efficient:</p> <pre><code> float *dst = float_buff; unsigned char *src = char_buff; for (i=0; i&lt;len; i++) *dst++ = (float)*src++; </code></pre> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825642#825642 1 Answer by Kristo for Casting an array of unsigned chars to an array of floats Kristo 2009-05-05T16:07:24Z 2009-05-05T16:07:24Z <p>Your first loop doesn't require a cast. You can implicitly convert from one type (e.g., <code>unsigned char</code>) to a wider type (e.g., <code>float</code>). Your second loop should use <code>static_cast</code>:</p> <pre><code>for (i=0; i&lt; len; i++) char_buff[i]= static_cast&lt;unsigned char&gt;(float_buff[i]); </code></pre> <p>We use <code>static_cast</code> to explicitly tell the compiler to do the conversion to a narrower type. If you don't use the cast, your compiler might warn you that the conversion could lose data. The presence of the cast operator means that you understand you might lose data precision and you're ok with it. This is <strong>not</strong> an appropriate place to use <code>reinterpret_cast</code>. With <code>static_cast</code>, you at least have some restrictions on what conversions you can do (e.g., it probably won't let you convert a <code>Bird*</code> to a <code>Nuclear_Submarine*</code>). <code>reinterpret_cast</code> has no such restrictions.</p> <p>Also, here's what <a href="http://www.research.att.com/~bs/bs%5Ffaq2.html#static-cast" rel="nofollow">Bjarne Stroustrup</a> has to say about this subject.</p> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825849#825849 7 Answer by Mark Ruzon for Casting an array of unsigned chars to an array of floats Mark Ruzon 2009-05-05T16:47:50Z 2009-05-05T18:16:44Z <p>I think the best way is to use a function object:</p> <pre><code>template &lt;typename T&gt; // T models Any struct static_cast_func { template &lt;typename T1&gt; // T1 models type statically convertible to T T operator()(const T1&amp; x) const { return static_cast&lt;T&gt;(x); } }; </code></pre> <p>followed by:</p> <pre><code>std::transform(char_buff, char_buff + len, float_buff, static_cast_func&lt;float&gt;()); std::transform(float_buff, float_buff + len, char_buff, static_cast_func&lt;unsigned char&gt;()); </code></pre> <p>This is the most readable because it says what is being done in English: transforming a sequence into a different type using static casting. And future casts can be done in one line.</p> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/825865#825865 1 Answer by Martin York for Casting an array of unsigned chars to an array of floats Martin York 2009-05-05T16:51:46Z 2009-05-05T16:54:13Z <p>The cast is automatic so you don't need to make it explicit.<br /> But you can use the standard algorithms:</p> <pre><code>std::copy(char_buff,char_buff+len,float_buff); </code></pre> <p>Converting back from float to char there is a potential loss of information. So you need to be more explicit.</p> <pre><code>std::transform(float_buff,float_buff+len,char_buff,MyTransform()); </code></pre> <p>Here we use the class MyTransform which should have an operator() that takes a float and returns a char. That should be trivial to impliment.</p> http://stackoverflow.com/questions/825344/casting-an-array-of-unsigned-chars-to-an-array-of-floats/826289#826289 0 Answer by Brian Postow for Casting an array of unsigned chars to an array of floats Brian Postow 2009-05-05T18:29:40Z 2009-05-05T18:29:40Z <p>No one has mentioned this, but if you're doing any arithmetic with the floats, you may want to round instead of truncate... if you have the char 49, and it gets turned into 4.9E1, after some arithmetic, it might turn into 4.89999999E1 which will turn into 48 when you turn it back into a char.</p> <p>If you're not doing anything with the float, this shouldn't be a problem, but then why do you need it as a float in the first place?</p>