Tagged Questions
The downsampling tag has no wiki summary.
8
votes
9answers
6k views
Downsampling and applying a lowpass filter to digital audio
I've got a 44Khz audio stream from a CD, represented as an array of 16 bit PCM samples. I'd like to cut it down to an 11KHz stream. How do I do that? From my days of engineering class many years ...
4
votes
2answers
375 views
Downsampling the number of entries in a list (without interpolation)
I have a Python list with a number of entries, which I need to downsample using either:
A maximum number of rows. For example, limiting a list of 1234 entries to 1000.
A proportion of the original ...
4
votes
2answers
386 views
Reducing moire when downsampling halftone comic images
How can I reduce moire effects when downsampling halftone comic book images during live zoom on an iPhone or iPad?
I am writing a comic book viewer. It would be nice to provide higher resolution ...
4
votes
5answers
2k views
Perceptual Image Downsampling
So here is my problem:
I have an image, that image is large (high resolution) and it needs to be small (much lower resolution).
So I do the naive thing (kill every other pixel) and the result looks ...
4
votes
1answer
1k views
Java - downsampling wav audio file
Hi I need to downsample a wav audio file's sample rate from 44.1kHz to 8kHz. I have to do all the work manually with a byte array...it's for academic purposes.
I am currently using 2 classes, Sink ...
3
votes
3answers
2k views
How do I sample a matrix in MATLAB?
I have a matrix in MATLAB from which I want to sample every other entry:
a =
1 5 9 13
2 6 10 14
3 7 11 15
4 8 12 16
And I want:
result ...
1
vote
3answers
171 views
Audio files down-sample
I am facing some problem in working with audio files. I am implementing some algorithms which deals with audio files and it require the input to have some properties.
5 KHz mono audio file.
I noted ...
1
vote
1answer
282 views
Image/2D array resampling in C
I am looking to implement a resampling algorithm for a 2D array(it could be grayscale image or some 2D array of floating point values).
The steps involved in this particular operation are:
Given a ...
0
votes
2answers
131 views
Python - Downsampling of a list of points, with given coordinates and distance between two adjacent points in the list
I really hope someone can help me with this! I'm trying to make this script run as I want, but I cannot seem to get the hang of it.
The file with the data to be handled is input from a GPS and looks ...
0
votes
1answer
114 views
Python Image Library: clean Downsampling
I've been having trouble trying to get PIL to nicely downsample images. The goal, in this case, is for my website to automagically downsample->cache the original image file whenever a different size ...
0
votes
1answer
175 views
Reducing channel count when recording in NAudio
I'm recording in NAudio with a PS3Eye camera, using CLEye drivers.
The camera has a 4 microphone array, and presents 4 channels of audio to the system.
By default, all of the channels are being ...
0
votes
0answers
79 views
Downsampling is not working
Hey guys,
I was having trouble downsampling a texture for post processing effect, apparently the downsampled texture is not getting any output(checked form PIX).
The code is just basic 4x4 ...
0
votes
4answers
74 views
Chebyshev LPF introducing noise
I have created a simple Chebyshev low pass filter based on coefficients generated by this site: http://www-users.cs.york.ac.uk/~fisher/mkfilter/, which I am using to filter out frequencies above 4kHz ...
0
votes
1answer
44 views
symbian C++ downsizing libraries
I wish to record audio at 32 kHz on my Symbian device but it only supports 48 kHz. From searching the internet I believe the term for what I am trying to do is called downsizing. Is there a C++ ...