The Accelerate.framework is a set of high-performance numerical libraries provided by Apple for iOS and OS X. It provides APIs for signal and image processing, linear algebra, and mathematical operations on vector data.

learn more… | top users | synonyms

0
votes
0answers
47 views

What are the open source equivalents of Apple's Accelerate Framework libraries?

If we take a look under the umbrella of Accelerate Framework we will see several libraries: I know that BLAS and LAPACK are open source and that the same code used otherwhere can be compiled against ...
0
votes
1answer
29 views

iPhone Accelerate Framework FFT to convert a two-dimensional array

I'm working on a project that requires a Fourier transform of a 2D array. However, I'm far from being an expert with both FFT's or particularly vDSP. I've seen some examples here, here or here but ...
3
votes
3answers
209 views

Compare two spectrograms in iOS

I am drawing spectrograms using the sample code aurio touch provided by apple. Now I want to compare the two spectrograms in iOS to see if they are same. Is it possible to compare the two spectrograms ...
0
votes
1answer
67 views

How to use vDSP in iOS for converting sound file to FFT

I am new to Audio framework but after searching a while i found Accelerate framework provided by iOS api for Digital Signal Processing. In my project i want to convert a sound file to fft so that i ...
0
votes
2answers
96 views

What actually does the size of FFT mean

While using FFT sample code from Apple documentation, what actually does the N, log2n, n and nOver2 mean? Does N refer to the window size of the fft or the whole number of samples in a given audio, ...
0
votes
0answers
109 views

FFT result is not correct. What is wrong? [closed]

I'm doing fft on audio file, but I'am getting too much 0.0 in fft output, so something went wrong. Here's my code: Read mp3 file in & convert data array to floats array. + (float *) ...
2
votes
2answers
116 views

Values ​​after FFT

I'm trying to create an audio visualizer. I'm using the fast Fourier transform to find the frequencies. memset(_window, 0, sizeof(float)*_windowSize); memset(_A.imagp, 0, nOver2 * sizeof(float)); ...
0
votes
0answers
57 views

Ios real time audio analysis battery life improvment

I'm doing real time audio analysis with accelerate framework, my application consumes too much battery, how can i improve battery life without data loss in my analaysis.
0
votes
1answer
43 views

Convolution function vDSP_imgfir returning 0 values

I am trying to use Accelerate framework on iphone (iOS 5.1) in order to do matrix convolution. However, when I run the function double *dst = calloc(2*3,sizeof(double)); double ...
1
vote
1answer
103 views

What is fastest way to group array elements into buckets in iOS?

So I have an array of 500,000 elements: float* arrayToBucketize=(float*) malloc(sizeof(float)*500000); and an array that represents the buckets: int buckets[5]={0,25,50,75,100}; What is the ...
1
vote
3answers
92 views

Copying Array Contents with vDSP

I'm using the accelerate framework to optimize my DSP code. There are several times when I want to copy the contents of one array (or portion of an array) to another. I can't seem to find an ...
0
votes
1answer
173 views

accelerate framework cepstrum peak find

I'm trying to find peak values of cepstrum analysis with accelerate framework. I get peak values always at the end of or at the beginning of frames. I'm analysing it real-time getting audio from ...
0
votes
1answer
209 views

What replaces the iOS 5 deprecated accelerometer:didAccelerate? [closed]

Hmmm ... I am behind the times and trying to port over some old code to a new application and the accelerator delegation is deprecated. There must be a replacement. Please point me to the docs and ...
1
vote
2answers
96 views

Accelerate framework ios: Fastest pythagoren calculation

So I have 2 matrices: each is 100x100. I am looking to calculate a 3rd matrix such that: M3[i]=sqrt(M1[i]^2 + M2[i]^2). I can obviously do ForLoops but I am sure there is something faster. I ...
1
vote
0answers
265 views

STFT overlap add method - What am i doing wrong?

i am trying to implement a short time fourier transform of an audio signal to do some filtering (subtract another stft signal using spectral subtraction). I am using a hamming window function with 50% ...
1
vote
1answer
42 views

need explanation of vDSP_zcoher()

im currently working with raw audio data and to compare two pieces of signal i came across vDSP_zcoher() and i have several questions about that: why is the output a complex array and not real. i ...
0
votes
0answers
59 views

Autocepstrum accelerate framework

How can i do autocepstrum (cepstrum + autocorrelation) analysis with accelerate framework? Is there any example code or project?
3
votes
1answer
322 views

problems calculating frequency response out of sine sweeps

I'm currently trying to calculate the frequency response of the iphone's speaker/microphone roundtrip. I play a sine sweep on the speaker, record it via the microphone and try to get the frequency ...
0
votes
1answer
359 views

Objective-C Peak Detection Accelerate Framework

I am a no math guru here, so I want to ask anyone familiar with Digital Signal Processing, what is the best way of detecting real time peaks. I get about 30 frames/values a second and I've tried to ...
0
votes
1answer
150 views

Setup the accelerator framework for fft on the iPhone

I have set a function to setup the accelerator, after i have read : Using the apple FFT and accelerate Framework iPhone FFT with Accelerate framework vDSP and apple docs. i did this : void ...
0
votes
2answers
106 views

Is there a vDSP function for 1D vector resampling?

I would like be able to use a vector as an envelope to apply fft equalization to rather large chunks of sound, with varying sizes. To be able to multiply the frequency domain bins by the envelope, ...
2
votes
2answers
522 views

Passing AVCaptureAudioDataOutput data into vDSP / Accelerate.framework

I am trying to create an application which runs a FFT on microphone data, so I can examine e.g. the loudest frequency in the input. I see that there are many methods of getting audio input (the ...
0
votes
1answer
476 views

Accelerate Framework iOS - FFT Input

Hi I have to draw a spectrum graph for the wav file. I am using the AudioFileGetProperty and I am able to retreive the AudioData for the wav file using audioData = (SInt16*)malloc( 2 *packetCount); ...
0
votes
2answers
55 views

Unstable Profiling Timings

I am attempting to obtain an average MFLOPS/S rate over many iterations for the cblas_dgemm function from the Accelerate Mac OS X framework. This is the code I am using (it calls cblas_dgemm via the ...
0
votes
1answer
96 views

How to include Accelerate framework with i686-apple-darwin11-llvm-g++-4.2?

I am trying to use the Accelerate framework on a small C++ program. I'm not even using XCode, only a simple Makefile. The compiler complains when I add the following line to my code: #include ...
1
vote
1answer
180 views

how to check if vDSP function runs scalar or SIMD on neon

Im currently using some functions from the vDSP framework, especially the vDSP_conv and I'm wondering if there is any way to check if the function invokes scalar mode or is processed SIMD on the neon ...
1
vote
1answer
210 views

How to use vDSP_conv to mimic MATLAB's xcorr function?

I am currently in the process of converting a MATLAB algorithm to C in order to use it in an iOS application. I've been struggling with the MATLAB's xcorr function. Here is the relevant MATLAB code. ...
1
vote
3answers
140 views

eliminate known audio from recorded sound to estimate background sound level via deconvolution

i have 2 signals, one containing audio data which is played on speakers. second one contains mic data recording the speakers simultaneously. what ive done so far: align signals in time domain via ...
0
votes
1answer
99 views

ios basic image processing extract red channel

straight forward I need to extract color components from an image, usually in Matlab this is done choosing the first matrix for Red. In the realm of accelerate framework, which documentation is ...
0
votes
0answers
233 views

how to read VBR audio in novacaine (as opposed to PCM)

The creator of novacaine offered example code where audio data is read from a a file and fed to a ring buffer. When the file reader is created though, the output is forced to be PCM: - ...
1
vote
1answer
314 views

Solving Ax=B using LAPACK, where x >= 0

I'm currently working on an iOS app which handles chemical additions to water. In order to find the smallest possible additions, I'm solving Ax=B where A is a 6x6 matrix and B is one column. As far ...
3
votes
1answer
427 views

FFT output with float buffer AudioUnit

I have a problem with vDSP_zrip & AudioUnit usage and configuration. In fact I configured AudioUnit to save packed data as float. I create a circular buffer and when this buffer is full I ...
2
votes
1answer
112 views

apple accelerate framework — constrain magnitude without losing absolute value

I'd like to use apple's accelerate for efficient clipping of an audio signal. If the signal is greater than 1 or less than -1, I'd like to make it equal to 1 or -1. vDSP_vmaxmg looks like it's almost ...
2
votes
1answer
107 views

Is it possible to store the result in one of the input vectors in the vDSP framework

In the vDSP functions of the Accelerate Framework, all the functions require you to input a result vector. Is it correct to pass the input vector (or one of the input vectors) as the result vector if ...
1
vote
2answers
623 views

Matlab FFT (Fast Fourier Transform) function of non log-base2 numbers

I have an app that I am developing that utalizes Apple's Accelerate Framework FFT function and I am trying to make it mimic the functionality of Matlab's FFT function. I have my current code set up ...
1
vote
3answers
163 views

iOS Cocoa Touch vImage Subsampling

I am working with vImages in Cocoa Touch, which in my case are basically ARGB-float-Arrays, and I need to do a subsampling. Low pass filtering is no problem using the vImage functions but how do I ...
2
votes
5answers
308 views

Why does order of array declaration affect performance so much?

First, in tuning a frequency analysis function using the Accelerate framework, the absolute system time has consistently been 225ms per iteration. Then last night I changed the order of which two of ...
1
vote
1answer
154 views

why does the Eigen vectors calulated from accelerate framework differ in sign?

Hi for the following 9x9 input matrix 6.522752 0.985874 0.000000 0.000000 0.000000 0.000000 -1.239167 1.833633 1.542076 0.985874 5.591528 0.000000 0.000000 0.000000 0.000000 1.833633 6.220998 ...
0
votes
3answers
276 views

how to scale gray scale image using accelerate framework (vImage)

Hi i need to scale a gray scale image fast, so i tried vImage and the app is crashing, please help. In the below code srcimg.data/dstimg.data is a point to unsigned char image data(single channel only ...
1
vote
3answers
267 views

Concurrent access to a single FFTSetup data structure in GCD

Is it okay to create a single FFTSetup data structure and use it to perform multiple FFT computations concurrently? Would something like the following work? FFTSetup fftSetup = vDSP_create_fftsetup( ...
1
vote
1answer
615 views

How to perform matrix inverse operation using the accelerate framework?

I would like to find the inverse of a matrix. I know this involves first LU factorisation then the inversion step but I cannot find the required function by searching apple's docs of 10.7! This ...
6
votes
2answers
991 views

Fastest YUV420P to RGBA conversion on iOS using the CPU

Can anyone recommend a really fast API, ideally NEON-optimized for doing YUV to RGB conversion at runtime on the iPhone using the CPU? The accelerate framework's vImage doesn't provide anything ...
2
votes
1answer
305 views

How do I find the eigenvalues and eigenvectors from a matrix using the Accelerate framework?

I have a function written in C to calculate eigenvalues and eigenvectors, but it takes a lot of CPU time since I am calling this function several times as part of another algorithm. According to Apple ...
4
votes
1answer
601 views

Perform autocorrelation with vDSP_conv from Apple Accelerate Framework

I need to perform the autocorrelation of an array (vector) but I am having trouble finding the correct way to do so. I believe that I need the method "vDSP_conv" from the Accelerate Framework, but I ...
2
votes
2answers
229 views

Frequency Analysis on OS X using veclib

I am looking for any examples of frequency analysis on os x. I understand that I should calculate the FFT of a sample of audio. I have code examples from apple's website for performing ffts: ...
5
votes
3answers
1k views

iPhone Accelerate Framework FFT vs Matlab FFT

I do not have much math background but part of the project I am working on requires the FFT of a single vector. The matlab function fft(x) works accurately for what I need, but after trying to set up ...
2
votes
1answer
489 views

AVAudioRecorder through accelerate FFT into frequency - EXECUTION

My main goal: find the frequency of the noises being pulled in through AVAudioRecorder. I have followed this: http://www.ehow.com/how_12224909_detect-blow-mic-xcode.html I have read up on many ...
2
votes
3answers
1k views

Symmetric Matrix Inversion in C using CBLAS/LAPACK

I am writing an algorithm in C that requires Matrix and Vector multiplications. I have a matrix Q (W x W) which is created by multiplying the transpose of a vector J(1 x W) with itself and adding ...
3
votes
1answer
724 views

Noise/distortion after doing filters with vDSP_deq22 (biquad IIR filter)

I'm working on a DSP class (obj-c++) for Novocaine, but my filters only seem to cause noise/distortion on the signal. I've posted my full code and coefficients here: https://gist.github.com/2702844 ...
0
votes
1answer
124 views

What does the function 'vDSP_vfltu16' (in vDSP) actually do?

It is a function in vDSP in iOS. The reference said this function Converts an array of unsigned 16-bit integers to single-precision floating-point values. But what actually is created? For example, ...

1 2