The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
41 views

R: Row resampling loop speed improvement

I'm subsampling rows from a dataframe with c("x","y","density") columns at a variety of c("s_size","reps"). Reps= replicates, s_size= number of rows subsampled from the whole dataframe. > ...
2
votes
1answer
29 views

Resample a time series with the index of another time series

I have 2 data frames with identical columns but different datetime indices. I want to resample one of them to use the index of the other and forward fill data from the one on any dates in the index ...
1
vote
0answers
125 views

How to encode resampled PCM-audio to AAC using ffmpeg-API when input pcm samples count not equal 1024

I am working on capturing and streaming audio to RTMP server at a moment. I work under MacOS (in Xcode), so for capturing audio sample-buffer I use AVFoundation-framework. But for encoding and ...
0
votes
1answer
52 views

How to resample a TimeSeries in pandas with a fill_value?

I have a TimeSeries of integers that I would like to downsample using resample(). The problem is that I have some periods with missing data that are converted to NaN. Since pandas does not support ...
0
votes
0answers
84 views

Pandas: complex resampling and groupby with Multiindex

I have the following DataFrame: df = pd.DataFrame({ 'Trader': 'Carl Mark Carl Joe Joe Carl Joe Carl'.split(), 'Product': list('AAAABBAA'), 'Quantity': [5,2,5,10,1,5,2,3], 'Start' : [ ...
0
votes
1answer
34 views

downsampling images as a function in Python

I am trying to resample some tiff files from 2000*2000 to 500*500. I have created a function and I tried for one file and it worked nicely. Now I want to apply it for all the available file I have. I ...
0
votes
0answers
77 views

FFMPEG audio upsampling/resampling to 48000 Hz causes sound wheeze/noises/dissortions

I'm using the following example http://svn.gnumonks.org/tags/21c3-video/upstream/ffmpeg-0.4.9-pre1/output_example.c to make videos. If I use 44100 Hz for the output audio format it seems that all is ...
0
votes
1answer
68 views

pandas: efficient way to make calculations within groups

I am working with transactional data like this: Purchase data | Buyer | Product | Quantity -------------------------------------------------- 2013-01-01 13:00:00 | Carl | A | 5 ...
4
votes
1answer
78 views

Extra Bin with Pandas Resample

I've got a pandas data frame defined like this: last_4_weeks_range = pandas.date_range( start=datetime.datetime(2001, 5, 4), periods=28) ...
0
votes
1answer
69 views

Pandas resampling hourly timeseries into hourly proportion timeseries

I am working with a hourly time series (Date, Time (hr), P) and trying to calculate the proportion of daily total 'Amount' for each hour. I know I can us Pandas' resample('D', how='sum') to calculate ...
0
votes
1answer
33 views

Stream Generator ARFF

I have ARFF file i've got from survey online. I want to generate (resample ?) more instances since I can't have enough from people. I've tried doing so with WEKA filter resample ...
1
vote
2answers
72 views

How to implement Matlab's “rate transition” (in C#)

I have a signal that is sampled at the rate of 10 000 Hz, and I need to resample it down to 4 000 Hz. In MATLAB I use a simulink model with three simple blocks: "From Workspace" with specified sample ...
0
votes
0answers
158 views

Lanczos Resampling error

I have written an image resizer using Lanczos re-sampling. I've taken the implementation straight from the directions on wikipedia. The results look good visually, but for some reason it does not ...
0
votes
1answer
54 views

Most efficient way to upsample an image using ImageMagick?

I have a large set of images that vary in size and resolution and I'm using ImageMagick to upsample those of low resolution. Until now, I've been using the -resample option with -sharpen as follows: ...
3
votes
1answer
332 views

How can I divide single values of a dataframe by monthly averages?

I have the following 15 minute data as a dataframe for 3 years. With the first two columns being the index. 2014-01-01 00:15:00 1269.6 2014-01-01 00:30:00 1161.6 2014-01-01 00:45:00 ...
1
vote
1answer
218 views

How to resize/resample bitmap images within pdfs and maintain vector overlays

My workflow is usually as follows: I annotate bitmap images using inkscape with vector elements (text, lines, etc.). I export a pdf from inkscape and include it in my pdflatex source ...
0
votes
0answers
64 views

Permutation analysis of group labels using replacements

I have a dataset of (two groups, replicates). My data is split based on the groups so I have 24 samples in group 1 and 20 samples in group 2. My data has replicates. So each set has 4 replicates, ...
0
votes
0answers
96 views

LIBFAAC cannot resample channels [closed]

Im using avconv to convert video files into MP4, but whenever I try to encode files with 6 or 8 channels into 2 channels using libfaac I get these error messages: Can not resample 8 channels @ 44100 ...
1
vote
1answer
479 views

How to resample with interp1 in Matlab when input vectors are of different length

I have two variables in a .mat file here: https://www.yousendit.com/download/UW13UGhVQXA4NVVQWWNUQw testz is a vector of cumulative distance (in meters, monotonically and regularly increasing) ...
1
vote
1answer
198 views

Upsampling Audio PCM-data in Javascript with WebAudioApi

For a project, I'm retrieving a live audio stream via WebSockets from a Java server. On the server, I'm processing the samples in 16Bit/8000hz/mono in the form of 8-bit signed byte values (with two ...
0
votes
1answer
115 views

Numpy/Scipy irfft strange behaviour

I am resampling a real signal, and since I have at my disposal its fft from rfft, I want to use irfft(signal, new_length). But I can't seem to get it working. This is a working code snippet that ...
1
vote
2answers
428 views

XNA + HLSL Gaussian blur produces offset artefacts

So I've built a downsampling algorithm in XNA (3.1. Yes, I'm aware it's horribly outdated. Yes, I have reasons for using it) and HLSL. Essentially how it works is by applying a Gaussian blur to the ...
-2
votes
1answer
599 views

matlab uniformly resample

I have a severely unbalanced data set. I want to perform a uniform resampling with 200% of the original data set size. the resample function seems cannot perform as I expected. Anyone knows any ...
0
votes
1answer
30 views

copyimageresampled not working for me

I want to resize my picture so that its not wider than 500px. The aspect ration must be the same. I don't see any changes in my image (960x960). This is my code: public static function ...
0
votes
2answers
180 views

What's the best filter for downsampling text?

I'm using ImageMagick to downsample text. I realize that there's no such thing as the best filter for every situation, but I'm thinking there must be a generally-accepted standard when it comes to ...
1
vote
1answer
588 views

Using resample to align multiple timeseries in pandas [closed]

Here's the setup code: import pandas from datetime import datetime a_values = [1728, 1635, 1733] a_index = [datetime(2011, 10, 31), datetime(2012, 1, 31), datetime(2012, 4, 30)] a = ...
0
votes
1answer
444 views

How do I resample/align a pandas timeseries to the closest calendar quarters?

Simple setup import pandas from datetime import datetime v = [100, 200] i = [datetime(2012, 1, 31), datetime(2012, 4, 30)] s = pandas.Series(data=v, index=i) Here's the original timeseries: ...
10
votes
1answer
178 views

nvidia driver differences 275.50 and 280.19 for GTX480 GPU in opencl resampling

the resampling of an image with driver version 275.50 and 280.19 for Nvidia GTX480 GPU gives little changes in the gray values. Maybe it is an interpolation issue. I can not determine what has changed ...
3
votes
0answers
102 views

Resampling with Repa and Stencils

I wrote a simple image bilinear resampling algorithm with repa and since I need to use partitioned arrays to make it correct, I thought I would go whole hog and use stencils too and hopefully get ...
0
votes
1answer
317 views

bootstrap resampling for hierarchical/multilevel data

I am attempting to do bootstrap resampling on a multilevel/hierarchical dataset. The observations are (unique) patients clustered within hospitals. My strategy is to sample with replacement from the ...
0
votes
0answers
143 views

comparision of different image resampling/ resizing algorithms [closed]

Is there any comparison for the following three resampling algorithm to resize the same image, say a 512x512 24-bit photo? (in terms of CPU usage, heaviness) Bilinear-Bicubic-Lanczos It could be best ...
2
votes
1answer
485 views

how to do mono to stereo conversion?

I am using libswresample to resample from any PCM format to 44.1kHz, 16bit int, stereo. I was playing around with some audio volume analyzing of the resulting audio stream and I figured out that in ...
10
votes
4answers
298 views

What is the name of this algorithm, and how does it compare to other image resampling algorithms?

This algorithm has been in my mind for a long time, but I cannot find it described anywhere. It's so simple though that I can't be the only one who has thought of it. Here's how it works: You start ...
8
votes
2answers
341 views

logarithmically spaced integers

Say I have a 10,000 pt vector that I want to take a slice of only 100 logarithmically spaced points. I want a function to give me integer values for the indices. Here's a simple solution that is ...
0
votes
0answers
246 views

Resampling audio output for A2DP (from PCM WAV)

How do I bring stereo PCM WAV 32,000Hz with a stream of 1024 kbps (125 KB) to the headset with Bluetooth 2.1 on a CM7 smartphone with DSPManager? Is this possible? SBC is really a bad idea. Maybe ...
-1
votes
1answer
211 views

opencv, accessing element for downsampling but white window appear

i'm learning c++ api of opencv, and for a simple approach i've started with try to downsample image (ok i know that there is pyrDown with gaussian resampling but it's for learning how to access ...
0
votes
1answer
624 views

Correctly decoding/encoding raw PCM data

I'm writing my WAVE decoder/encoder in C++. I've managed to correctly convert between different sample sizes (8, 16 and 32), but I need some help with the channels and the frequency. Channels: If I ...
1
vote
1answer
242 views

Javascript library for resampling an array?

I'm trying to visualize some data on an HTML canvas and I'm facing an issue similar to this one. That is, the size of my data doesn't exactly match the size of my canvas. In one instance I'd like to ...
0
votes
0answers
286 views

PCM-downsampling: input-frames/output-frames vs. buffer-size

I have a program which reads 4096 frames (16384 bytes) 16bit LE 48000 Hz PCM into a 16384 bytes large buffer per "read" from a kernel module (= read from ALSA's ring-buffer). After each "read" I ...
0
votes
1answer
109 views

HResult 0x80040204 from IMediaObject::ProcessInput

I get this Hresult when i resample PCM Sound to a IEEE:Float Sound with DirectXMediaResampler. Changing the bits per sample with the same sampling rate is no problem. Also resamppling from IEEE:Float ...
7
votes
1answer
321 views

Best practice: Where to resample PCM and which tool?

I have developed a kernel module (Android) which provides me: PCM 16-bit 48000 Hz 2 channel and I want to stream it to an Apple's Airport Express (AEX) in java. The AEX needs 44.1 kHz PCM so I ...
2
votes
1answer
327 views

Bug in resampling with pandas 0.8?

I am currently fighting to work with the reasmpling function from pandas 0.8.0b1. For example, when I try to aggregate (using 'mean') 10min values to monthly values, the function seems to use the ...
0
votes
1answer
69 views

resampling data in 2 subset to eqully

Could you help me a little bit i have 2 subset binary image curve A and B ,How i resampling data A or B to Equally. For Example curve A, {(1,1),(1,2),(1,3),(1,4),(1,5)} curve B, ...
5
votes
1answer
996 views

Transparent png resizing with Python Image Library and the halo effect

There are a couple similar questions on SO, but none of them really helped. Basically I am trying to resize a simple png image, as seen here: ...
2
votes
1answer
219 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 ...
3
votes
2answers
483 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 ...
0
votes
0answers
299 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 ...
4
votes
3answers
3k 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 ...
0
votes
1answer
166 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
280 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

1 2