Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
4k views

Where can I find a good read about bicubic interpolation and Lanczos resampling?

I want to implement the two above mentioned image resampling algorithms (bicubic and Lanczos) in C++. I know that there are dozens of existing implementations out there, but I still want to make my ...
6
votes
6answers
1k views

Percentiles of Live Data Capture

I am looking for an algorithm that determines percentiles for live data capture. For example, consider the development of a server application. The server might have response times as follows: 17 ms ...
6
votes
4answers
2k views

How do you do bicubic (or other non-linear) interpolation of re-sampled audio data?

I'm writing some code that plays back WAV files at different speeds, so that the wave is either slower and lower-pitched, or faster and higher-pitched. I'm currently using simple linear ...
4
votes
2answers
741 views

Scipy interpolation how to resize/resample 3x3 matrix to 5x5?

EDIT: Paul has solved this one below. Thanks! I'm trying to resample (upscale) a 3x3 matrix to 5x5, filling in the intermediate points with either interpolate.interp2d or ...
4
votes
3answers
1k views

Resampling of two data sets of different length in MATLAB

I have two vectors: sensorA of length 927 and sensorB of length 1250. I would like to make them of the same length. The resample() function in MATLAB is very noisy at the edges and I need atleast ...
4
votes
2answers
329 views

Fastest and most efficient upsampling routine for Audio in Java

I have a need to convert audio samples from 11025 and 22050 to 44100; I'm looking for the fastest and best sounding conversion routine. I require that the answer be given in pure Java, without the ...
3
votes
1answer
1k views

Resampling irregularly spaced data to a regular grid in Python

I need to resample 2D-data to a regular grid. This is what my code looks like: import matplotlib.mlab as ml import numpy as np y = np.zeros((512,115)) x = np.zeros((512,115)) # Just random data ...
3
votes
2answers
177 views

resampling a series of points

i have an array of points in 3d (imagine the trajectory of a ball) with X samples. now, i want to resample these points so that i have a new array with positions with y samples. y can be bigger or ...
2
votes
1answer
75 views

efficient numpy zero-order hold

Is there an efficient way to resample a numpy array using zero-order hold? Ideally something with a signature like that of numpy.interp? I'm aware of the scipy.interpolate.interp1d, but I'm sure that ...
2
votes
3answers
183 views

HTML5 canvas: is there a way to resize image with “nearest neighbour” resampling?

I have some JS that makes some manipulations with images. I want to have pixelart-like graphics, so I had to enlarge original images in graphics editor. But I think it'd be good idea to make all the ...
2
votes
2answers
2k views

How would i down-sample a .wav file then reconstruct it using nyquist? - in MATLAB

This is all done in MATLAB 2010 My objective is to show the results of: undersampling, nyquist rate/ oversampling First i need to downsample the .wav file to get an incomplete/ or impartial data ...
2
votes
2answers
778 views

Library for audio resampling

In an embedded (Windows CE) C++ project, I have to resample an arbitrary sample-rate down (or up) to 44100 Hz. Is there a free and portable C/C++ library for audio resampling?
2
votes
1answer
842 views

resample / upsample sound frames from 8Khz to 48Khz (Java/Android)

The application that I am trying to develop for andriod, records frames at 48Khz (PCM 16bits & mono) and sends them to the network. Also, there is an incoming stream of audio at 8Khz. So, I ...
2
votes
1answer
1k views

How to Resize using Lanczos

I can easily calculate the values for sinc(x) curve used in Lanczos, and I have read the previous explanations about Lanczos resize, but being new to this area I do not understand how to actually ...
1
vote
2answers
64 views

R sampling to get around randomForest 32 factor limit [closed]

I'm trying to work around the randomForest package limit of 32 levels for factors. I have a data set with 100 levels in one of the factor variables. I wrote the following code to see what things ...
1
vote
1answer
178 views

Resample data according to a timeArray - JAVA

I'd like to translate the following Matlab function ts = resample(ts,Time) resamples the timeseries object ts using the new Time vector. in java. For the moment, I could not find any similar java ...
1
vote
1answer
91 views

MSWord batch resampling images

I have a few thousand word files which some of my colleagues have put together. They're not very technical people, and they've just taken their 10 megapixel cameras and embedded a few photos directly ...
1
vote
3answers
577 views

Help with resampling/upsampling

I have an array of 240 data points sampled at 600hz, representing 400ms. I need to resample this data to 512 data points sampled at 1024hz, representing 500ms. I assume since I'm starting with 400ms ...
1
vote
1answer
377 views

How do I mixdown multiple audio channels in java/xuggler?

like mixing 6 channel surround down to stereo? xuggler throws: ERROR com.xuggle.xuggler - Error: inputChannels > 2; unsupported
1
vote
1answer
467 views

jpegs are corrupted when resampled with java imageIO

The JPEG Images that ImageIO generated view correctly on windows file explorer, as well as safari webbrowser, but in FireFox, the resampled images are clipped. How do I use ImageIO without corrupting ...
0
votes
0answers
30 views

Resampling of time-series data

Suppose I have an array of integer numbers. Each integer number represents the number of requests against a database within a 10 minute window. The array contains 20,000 numbers, representing a ...
0
votes
1answer
53 views

resample image during upload in joomla

Unfortunately no exists a component that do it. Only if i insert images in the article. I need to create a php script on joomla that resample images upload from users on frontend during upload ...
0
votes
1answer
84 views

How to play a wav file on high frequency?

Do you have any idea on converting my wav audio data to high frequency playback. I am creating a module that plays a melody wav file in 16-20khz frequency. any idea? -tong
0
votes
2answers
446 views

Can I use opencv cvResize() function on my own custom data 2D array? If yes How?

Objective: I am trying to use openCV function cvResize() to resample a 2D array.[I have a working code in opencv using cvResize, I know its usage] But the input 2D array which I want to resample is ...
0
votes
1answer
247 views

Discretizing functions in Matlab

I have the following function and set of values: z(t): {R → [-2,3] | z(t) = sin(0.5×π×t) + cos(2×π×t) + 1 t = [-1 : 0.001 : 1] I need to determine z(n×Ts) = z(n), using the sample period ...
0
votes
4answers
430 views

imagecopyresampled makes black box but not resampled image

I am working to resize and resample some jpeg images using PHP. It take any image greater than 500px by 500px and make the largest side 500px. This should be relatively simple but every time I run the ...
0
votes
2answers
145 views

Why do i need a special case for lanczos(0)?

i have implemented a simple image resampler in OpenCL which uses the Lanczos function. Lanczos is defined by: Written in C: inline float lanczos(float x, float a) { if( x > fabs(a) ) return ...
0
votes
1answer
157 views

JPG Image Processing

Is it possible to disable 'Chroma Subsampling' during resampling or resizing a JPG image? Disabling Chroma Subsampling is same as YCbCr filter 4x4x4 as far as I understand. Is there a library for ...
0
votes
1answer
204 views

How to normalise audio after resampling

I'm thinking of using libsamplerate to resample audio files which seems fairly simple. In the FAQ it states that after resampling that the audio should be normalised which I'm not sure how to do. ...
0
votes
1answer
407 views

How to use Weka Supervised Resample Filter in Java Code?

I want to re-sample the instances to uniform class distribution. For this, I am using the following code. import weka.core.Instances; import weka.filters.supervised.instance.*; ... String ...
0
votes
1answer
115 views

How can I make sure sox doesn't perform automatic dithering without knowing the version?

I'm using sox to resample audio before introducing it to our speech detection system, but I've hit a snag with version 14.3 of sox adding automatic dithering by default to the resampling operation, ...