Transform Codings like DCT,FFT, Haar...
Posted: Mon Feb 11, 2013 8:14 pm
Hi
I would like it if PureBasic would provide a simple Function for Transform Codings like DCT,FFT, Haar...
I could provide some C code. However there are also many libraries on the internet.
I would like it if PureBasic would provide a simple Function for Transform Codings like DCT,FFT, Haar...
Code: Select all
TransformArray(array(), #PB_Transform_FFT)
TransformArray(array(), #PB_Transform_IFFT)
TransformArray(src_array(), dest_array(), #PB_Transform_DCT)
TransformArray2D(src_array(), dest_array(), #PB_Transform_HAAR_Wavelet)
...