The accelerate-framework tag has no wiki summary.
4
votes
1answer
139 views
Linear algebra on iPhone (python/numpy?)
This semester, I'm implementing a compressed-sensing algorithm as an iPhone app. To do this, I'll need some good matrix/linear algebra libraries. I'm a little new to both iOS and Python, and am ...
4
votes
4answers
2k views
iPhone Image Processing with Accelerate Framework and vDSP
UPDATE: Please see additional question below with more code;
I am trying to code a category for blurring an image. My starting point is Jeff LaMarche's sample here. Whilst this (after the fixes ...
3
votes
2answers
75 views
fast comparison of arrays in iOS
I need to move a small 2D array of values around a much larger 2D array of values, and set any values of the larger array that are greater than the corresponding values in the smaller array to the ...
3
votes
1answer
433 views
Lapack version on Mac LION
Lapack 3.2.1 is not fully theard safe right...but 3.3 is which is recently being released by netlib with help of intel.
So do some one know whether or not Lapack 3.3 version would be shipped with new ...
2
votes
3answers
425 views
FFT on iPhone to ignore background noise and find lower pitches
I have implemented Demetri's Pitch Detector project for the iPhone and hitting up against two problems. 1) any sort of background noise sends the frequency reading bananas and 2) lower frequency ...
2
votes
4answers
1k views
How to implement fast image filters on iOS platform
I am working on iOS application where user can apply a certain set of photo filters. Each filter is basically set of Photoshop actions with a specific parameters. This actions are:
Levels adjustment
...
2
votes
1answer
273 views
problem on multiplying a matrix and a vector with vecLib framework of Mac OS X 10.7
I just have started using vecLib framework to make a program doing intensive matrix-vector multiplications on Mac OS X 10.7. I made a simple program like this; multiply the matrix a with the vector x ...
2
votes
1answer
309 views
Sum array of unsigned 8-bit integers using the Accelerate framework
Can I use the Accelerate Framework to sum an array of unsigned 8-bit integers without converting to an array of floats.
My current approach is:
vDSP_vfltu8(intArray, 1, floatArray, 1, size);
...
2
votes
1answer
543 views
Autocorrelations using vDSP functions
Given a 1D vector of floats or doubles, how can the autocorrelations for that vector be calculated using functions from the vDSP library in the Accelerate Framework?
One would suspect the vDSP_acor() ...
2
votes
3answers
702 views
What could cause FFT data to have spikes at the wrong frequencies?
I'm implementing FFT pitch detection on the iPhone using Apple's Accelerate framework as discussed many times here before.
I understand phase offsets, bin frequencies, and have researched several ...
2
votes
2answers
700 views
How do I set up a buffer when doing an FFT using the Accelerate framework?
I'm using the Accelerate framework to perform a Fast Fourier Transform (FFT), and am trying to find a way to create a buffer for use with it that has a length of 1024. I have access to the average ...
1
vote
2answers
31 views
how can I replicate accelerate (apple DSP library) functions in windows?
I'm going to make this as succinct as I can:
I have a project that I am needing to port to windows due to some very specific hardware constraints. There's a little utility class which performs vector ...
1
vote
1answer
82 views
Incompatible pointer type?? Strange
I need to get the solution of an equation system. For this purpose i use the function sgesv_().
Everything works great, and it retur me the right results of the solution.
But i get an strange ...
1
vote
2answers
155 views
Algebra with the Accelerate Framework
After watching the WWDC video on the accelerate framework, I saw that it had two packages called BLAS and LAPACK. When they talked about BLAS, it sounded like that wasn't what I wanted however, ...
1
vote
2answers
332 views
LAPACK routine works on iPhone simulator, but not on device
I'm using the Accelerate framework to solve a under/overdetermined system of linear equations. The routine I'm using is dgelsd_ originally from LAPACK.
dgelsd_( &m, &n, &nrhs, a_t, ...
1
vote
0answers
62 views
Is there a function to calculate linear regression for array of points in Accelerate Framework for iPhone?
I am looking for a fastest / easiest solution to calculate regression for bunch of double points stored in array.
I have tried to find proper function in Accelerate framework or tutorial but with no ...
1
vote
3answers
337 views
Does OpenCV for Mac use the Accelerate framework?
The Accelerate framework is a Mac-specific framework that provides things like image convolutions and LAPACK, supposedly optimized to be as fast as possible on Macs. My question: Does OpenCV take ...
0
votes
2answers
93 views
Accelerate's vImage vs. vDSP
I'm trying to use the Accelerate framework on iOS to bypass the fact that Core Image on iOS doesn't support custom filters/kernels. I'm developing an edge detection filter using two convolutions with ...
0
votes
2answers
37 views
Using vecLib/vDSP to create a sine tone generator with an envelope
I want to create a sine tone generator with the Accelerate framework. I'd like my generator to have an attack/release setting (i.e., an amplitude envelope).
I understand how to create a vector full ...
0
votes
0answers
32 views
Adapting fftwf_plan_r2r_2d to Accelerate Framework
I am working on porting some code that uses the FFTW library to perform some gradient-domain image processing on a single channel float image. The current code calls fftwf_plan_r2r_2d() on a floating ...
0
votes
1answer
158 views
I want to implement Image processing algorithms in iOS, can you please suggest some good guide as a starter
I found the apple documentation to be unclear. I have experience of 2 years in Image processing (Matlab and Scilab). I just need the functions for Matrix multiplication and some image conversion ...
0
votes
1answer
104 views
vfp.h in the accelerate framework doesn't link on XCode 4.0.2
I'm using the Accelerate framework to boost the performance of a piece of code that I'm running on iPhone.
I require two headers from Accelerate which are vdsp and vfp. vDSP works perfectly, however ...
0
votes
1answer
60 views
Using BIGNUM and vU256
Is there any benefit on using OpenSSL's BIGNUM over Accelerate Framework's vU256, or vice versa?
0
votes
1answer
307 views
Accelerate Framework VimageConversion library values Planar8, PlanarF, ARGB8888, ARGBFFFF, RGBA8888, and RGBAFFFF --?
H all,
Am new to Image processing and i need to some image processing using iphone4. Iphone 4 supported only ...
0
votes
1answer
1k views
Setup for Apple's Accelerate FFT for the iPhone
i am trying to understand the concepts of digital sound proceesing and i want to implement the FFT of Apple's Accelerate Framework link. In the vDSP API you can find a nice and fast FFT but ...
0
votes
2answers
434 views
Why can't I compile code referencing the vImage library on the iPhone?
I am trying to include vImage based functionality in my code. But compile fails - it doesnt even seem to recognize the functions/variables at all.
But at the same time vDSP based code seems to work ...
0
votes
1answer
746 views
iPhone/Mac Accelerate Framework vector scale and vector normaliziation
Hey guys, does anybody know of some Accelerate.framework functions I can use for scaling a vector by a float scalar, and normalizing a vector? I found one I think might work for scaling in the ...
-2
votes
0answers
41 views
Computing the inverse of a matrix by using BLAS or LAPACK in Objective-C? [closed]
RT, which function can deal with it from the cblas.h or clapack.h and what's the type of the input matrix and output result?
could be a (double) matrix[m][n] or (double) matrix[m*n]