Downsampling a 23 bit number to 8 bits

  • Thread starter nashed
  • Start date
  • Tags
    Bit Bits
In summary, the author is trying to build a system that receives coefficients and performs a Fourier approximation, and is stuck at this step as he is not sure how to sample his 23 bit number so he gets the correct shape of the function without distortions.
  • #1
nashed
58
5
I'm trying to build a system that receives coefficients and performs a Fourier approximation, I need to write the system in VHDL so I'm using tables to simulate sin functions, they output an 8 bit number which is the sin of the input, then I need to multiply each sin with it's given coefficient and to prevent overflow I output a 16 bit number, next I want to sum over all the sins I have and I've determined that I need to output a 23 bit number to prevent overflow, now I need to output the result to a display which expects an 8 bit number and I'm stuck at this step as I'm not sure how to sample my 23 bit number so I get the correct shape of the function without distortions.
 
Engineering news on Phys.org
  • #2
Stricktly speaking, down-sampling involves changing the sample rate, not the bit depth.
You need to keep the signal in range on the screen. Can you display more than 8 bit data?
If your output is to be in dB then you might take the log (to the base two) of the 23 bit number.
If your output must be linear you will need to search for the maximum and scale the dataset.
display(i) = 255 * value(i) / maximum.
The process gain of the transform will increase the dynamic range of the output spectrum by the square root of the number of input samples.
 
  • #3
Baluncore said:
Stricktly speaking, down-sampling involves changing the sample rate, not the bit depth.
You need to keep the signal in range on the screen. Can you display more than 8 bit data?
If your output is to be in dB then you might take the log (to the base two) of the 23 bit number.
If your output must be linear you will need to search for the maximum and scale the dataset.
display(i) = 255 * value(i) / maximum.
The process gain of the transform will increase the dynamic range of the output spectrum by the square root of the number of input samples.

Thanks for the reply! I was going for something similar, thing is my dataset is dynamic which means my maximum will change in real time, I suppose the easy solution is to always output the last 8 bits, am I correct?
 
  • #4
nashed said:
I suppose the easy solution is to always output the last 8 bits, am I correct?
You could just display the most significant 8 bits but you will be throwing away much of your data.

If you do not have a fast multiply function then, rather than tracking the maximum, consider doing a 23 bit OR of all the data values into a common register that started out zero. After the accumulate, the first set bit will tell you how many bits to shift the output to show the most useful 8 bits.
 
  • #5
Talk about a quart into a pint pot!
For really drastic bit reduction is could be worth using floating point arithmetic.
nashed said:
so I get the correct shape of the function without distortions.
Hardly 'without distortions' but what level of distortion would be acceptable?
You could always low pass filter the high res data, which would reduce apparent distortion.
There are so many possibilities but the best one would depend upon your actual requirement and what complexity (and delay) you can accept for the processing.
 
  • #6
Sampling with finite resolution also introduces noise into even ideal signals (like a sine wave read from a table). It can be shown that the noise is additive white Gaussian. Whether the reduction in SNR is significant depends on your particular experiment.
 
  • #7
nashed said:
I'm trying to build a system that receives coefficients and performs a Fourier approximation,
This appears to be a Fourier Synthesis exercise, computed in hardware using integers only.
Unless there is some intelligent control of the integer input coefficients, the output amplitude will need to be scaled.
 
  • #8
Baluncore said:
This appears to be a Fourier Synthesis exercise, computed in hardware using integers only.
Unless there is some intelligent control of the integer input coefficients, the output amplitude will need to be scaled.
Raised Cos analysis is what's done for video bit reduction. I think it's chosen for speed and for the subjective qualities of the result (relevant here). There is a load of stuff about MPEG coding and its history (and Jpeg, too). The questions of scaling, blocking and interpolation have all been addressed since digital transmission of sound and vision have been implemented. No need to reinvent a wheel, I think.
 
  • #9
sophiecentaur said:
No need to reinvent a wheel, I think.
I thought that this was an introductory exercise in VHDL. There was no OP mention of fast transform algorithms or data compression.
 
  • #10
Baluncore said:
There was no OP mention of fast transform algorithms or data compression
I think there is problem here with terminology and definitions in the OP. As usual on PF, the terms were picked up and run with before the OP made it clear what was actually wanted. For instance, what is meant by "sampling a 23 bit number"?
Data compression must be involved here if the OP also requires "downsampling" and a reduction in bits (per sample??). You can downsample many signals without loss if you are prepared to use more bits per sample or you can reduce the word size if you increase the sample rate. Trying to do both has to introduce distortion of some sort, The clever thing is to make the distortions as invisible, subjectively, as possible. That's why I was thinking in terms of MPEG techniques.
It would help if the task were defined more clearly. It is probably a very specific thing that the OP has been given.
 

What is downsampling?

Downsampling is the process of reducing the resolution or bit depth of a numerical value. In the context of a 23 bit number being downsamples to 8 bits, this means reducing the number from 23 binary digits (bits) to 8 binary digits.

Why would you want to downsample a 23 bit number to 8 bits?

There are several reasons why downsampling a 23 bit number to 8 bits may be necessary. One possible reason is to save memory or storage space. Another reason could be to fit the number into a system or device that only accepts 8 bit numbers.

How does downsampling a 23 bit number to 8 bits affect the accuracy of the number?

Downsampling a number to a lower bit depth will result in a loss of precision and accuracy. This is because fewer bits means there are fewer possible values that can be represented. In the case of downsampling from 23 bits to 8 bits, there will be a significant loss of accuracy.

What methods can be used to downsample a 23 bit number to 8 bits?

There are several methods that can be used to downsample a number, including truncation, rounding, and quantization. Each method has its own advantages and drawbacks, and the choice of method will depend on the specific needs and requirements of the application.

What are some potential issues to consider when downsampling a 23 bit number to 8 bits?

When downsampling a number, it is important to consider the potential loss of accuracy and the impact this may have on the results of any calculations or analyses using the downsampled number. It is also important to carefully choose the downsampling method to minimize any potential errors or distortions.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
8
Views
1K
Replies
1
Views
2K
  • Programming and Computer Science
Replies
1
Views
1K
Replies
9
Views
1K
Replies
7
Views
845
  • Engineering and Comp Sci Homework Help
Replies
2
Views
1K
  • Electrical Engineering
Replies
4
Views
839
  • Electrical Engineering
Replies
12
Views
10K
  • Electrical Engineering
Replies
4
Views
2K
  • General Math
Replies
3
Views
5K
Back
Top