The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
26 views

inSampleSize returns pixelated results when used for downsampling

Background Creating an app that has a lot of high quality images, I've decided to downscale the images to the needed size (meaning that if the image is larger than the screen , I downscale it ) . ...
0
votes
1answer
51 views

Pandas Downsampling Issue

I have a csv file with two columns containing dates and 0 or 1 like so: 17/08/2012 07:47:16 0 17/08/2012 07:54:31 1 17/08/2012 08:02:31 0 17/08/2012 09:22:33 0 17/08/2012 09:58:05 0 17/08/2012 ...
1
vote
0answers
140 views

GLSL 330: down sample texture

I want to down sample an input texture from 800x600 to one quarter itself (200x150 pixel). But if I do that I can see only a little bit of the image. It seems that the frament shader doesn't down ...
0
votes
0answers
68 views

How to downsample audio file in objective c

I have recorded audio in linear PCM format using audio queue service. Its recorded with the sample rate of 22050Hz which is the required sampling rate of file in my project. Now I want to downsample ...
0
votes
0answers
179 views

Downsampling .wav data array from 44.1 khz to 8 khz java

So for a lab in school I am supposed to downsample a 44.1 khz wav file (either in 8 or 16 bits per sample, stereo and mono) to a 8 kHz wav file. So far, I have read the initial file and put each part ...
0
votes
1answer
269 views

Downsampling pcm/wav audio from 22khz to 8khz

My android application needs to convert PCM(22khz) to AMR , but the API AmrInputStream only supports with pcm of 8khz. How can i downsample the pcm from 22 khz to 8 khz?
0
votes
1answer
146 views

Downsample a wave file

I need to downsample a 16000 hz PCM 16 bit wave file to 8000 hz. I dont have much knowledge(almost no) on audio processing, i just understand bits, bytes, shifting etc as all programmers understand. ...
0
votes
2answers
147 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 ...
0
votes
0answers
280 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 ...
1
vote
3answers
259 views

Play 48 kHz PCM on 44.1 kHz receiver

I have a 48 kHz PCM stream and want to stream it to a 44.1 kHz compatible player (Apple's AirPlay). Someone knows if this "just works because some bytes would get lost", or do I have to do a ...
2
votes
1answer
979 views

Ghostscript: how to reduce file size of large PDFs without changing smaller PDFs

I am using GhostScript to convert large batches of PDF to PDF to reduce file size. The original PDFs vary in size and quality. Where there is a low quality, small file size (<350kb) PDF the output ...
1
vote
2answers
627 views

Python Pandas: Data Downsampling

My data looks like this: TEST 2012-05-01 00:00:00.203 OFF 0 2012-05-01 00:00:11.203 OFF 0 2012-05-01 00:00:22.203 ON 1 2012-05-01 00:00:33.203 ON 1 2012-05-01 00:00:44.203 OFF 0 TEST 2012-05-02 ...
0
votes
1answer
769 views

VOIP SIP - Help to encode from PCM to U-law

I’m working to VOIP Windows Phone project (Soft-phone application for Windows Phone). At the present, I (Windows phone soft-phone) can receive and heard voice of another soft-phone, only ONE-WAY. I ...
1
vote
0answers
348 views

Downsampling: Audible Clicks

In a C++ Program, I am trying to downsample blocks of 8192 audio samples (-32768...32767). The original Sampling Rate is 48kHz, and I'd like to have 16kHz. The ratio 16/48 should yield roughly 2731 ...
0
votes
2answers
487 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
2answers
368 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
478 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 ...
1
vote
3answers
764 views

Audio files down-sample

I am facing a problem while working with audio files. I am implementing an algorithm that deals with audio files, and the algorithm requires the input to be a 5 KHz mono audio file. Most of the audio ...
1
vote
1answer
532 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
4answers
183 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
73 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++ ...
5
votes
3answers
878 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
552 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 ...
5
votes
3answers
4k 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 ...
4
votes
6answers
4k 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 ...
5
votes
1answer
2k 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 ...
10
votes
9answers
10k 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 ...