Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
1k views

8 bit audio samples to 16 bit

This is my "weekend" hobby problem. I have some well-loved single-cycle waveforms from the ROMs of a classic synthesizer. These are 8-bit samples (256 possible values). Because they are only 8 ...
4
votes
3answers
834 views

Fastest dithering / halftoning library in C

I'm developing a custom thin-client server that serves rendered webpages to its clients. Server is running on multicore Linux box, with Webkit providing the html rendering engine. The only problem is ...
3
votes
1answer
706 views

Vector Quantization in Speech Processing Explanation

I'm having trouble determining from this research paper exactly how I can reproduce the Standard Vector Quantization algorithm to determine the language of an unidentified speech input, based on a ...
3
votes
3answers
766 views

Does C have a Quantization function?

I have a buffer with many positive 16bit values (which are stored as doubles) that I would like to quantize to 8bit (0-255 values). According to Wikipedia the process would be: Normalize 16 bit ...
2
votes
2answers
110 views

Color Quantization Algorithm

I'm working on a color quantization algorithm. This is the basic process: Convert the image to a set of three dimensional vectors (RGB space for instance). Put that set in a list of sets. While the ...
2
votes
1answer
398 views

Finding number of quantizing layers in MATLAB

I'm working on image processing, and I have an image that has been DCT'd and quantized for 8 x 8 blocks of the 512 x 512 matrix, now I have to find how many quantizing levels that the image has. Do I ...
2
votes
4answers
153 views

Algorithm To Quantify The Difference Of Line Segment Paths

Say I have two line segment paths, such as a subset of the examples below. How can I quantify the difference between them? |__ \_ __ /\ \/ | _ The two paths may have a different number of ...
2
votes
3answers
2k views

Convert/Quantize Float Range to Integer Range

Say I have a float in the range of [0, 1] and I want to quantize and store it in an unsigned byte. Sounds like a no-brainer, but infact it's quite compliated: The obvious solution looks like this: ...
2
votes
2answers
810 views

Dithering gouraud-shaded vertex-colored polygons to remove banding

I'm using OpenGL ES on a low-resolution, embedded device. I've applied a vertical color gradient, using vertex coloring, to a large polygon serving as a backdrop to my rendered scene. I can see clear ...
1
vote
1answer
147 views

How can I re-quantize the dynamic range of an image in MATLAB?

I need to uniformly re-quantize the dynamic range of an image based on the following pixel value conversions: Pixel Value: Quantized Value 0 - 64 : 31 65 - 128 : 95 129 - 192 : 159 193 - 255 ...
1
vote
3answers
434 views

Is it possible to optimize this Matlab code for doing vector quantization with centroids from k-means?

I've created a codebook using k-means of size 4000x300 (4000 centroids, each with 300 features). Using the codebook, I then want to label an input vector (for purposes of binning later on). The input ...
1
vote
2answers
177 views

Keyboard input to music notation

I am working on a music composition application that supports midi keyboard input. Are there any open/free libraries that can quantize those inputs (with time as the domain) to a format suitable for ...
1
vote
1answer
242 views

What's the difference between quantize() and str.format()?

I don't mean what's the technical difference, but rather, what's the faster/more logical or Pythonic, etc. way to do this: def __quantized_price(self): TWOPLACES = Decimal(10) ** -2 ...
0
votes
1answer
39 views

Quantize values of an image

I am working in OpenCV on Linux.I am trying to quantize values of vectors Ib,Ig,Ir which are of length 100. for (int i=0;i<img31->height;i++) { for (int ...
0
votes
1answer
80 views

image quantization

In Efford's cd there is a code for grayscale image quantization: int n = 8 - numBits;//numBits will be taken as input float scale = 255.0f / (255 >> n); byte[] tableData = new byte[256]; for ...
0
votes
1answer
79 views

Excel Graphing help

I didn't know what stack exchange site to put this on, so I put it here. I am trying to determine if there is a correlation between the size of a school and the major that the school specializes in. ...
0
votes
1answer
641 views

What is the difference between Linear Quantization and Non-linear Quantization?

What is the difference between Linear Quantization and Non-linear Quantization ? I'm talking with regard to PCM samples. http://www.blurtit.com/q927781.html has an article about it but I'm looking for ...
0
votes
1answer
275 views

Range in DCT coefficents MATLAB

I am trying to find the range over which the coefficients of an 8 x 8 block varies for various block of an image. Do I need to generate a histogram for the values of is there a function in matlab?
0
votes
1answer
316 views

JH Labs Quantize Usage to reduce image color depth

I am trying to use the QuantizeFilter in http://www.jhlabs.com/ip/filters/index.html to reduce the color depth of a screen shot. Here is my very very simple code: Robot robo = new Robot(); ...
0
votes
3answers
269 views

Reducing sample bit-depth by truncating

I have to reduce the bit-depth of a digital audio signal from 24 to 16 bit. Taking only the 16 most significant bits (i.e. truncating) of each sample is equivalent to doing a proportional calculation ...