João Felipe Santos

Results 17 issues of João Felipe Santos

[biicode](biicode.com) is a dependency manager for C/C++. It would be nice to have support for Aquila there! I think it's actually really easy to add a new library to the...

This package does not compile anymore on Sierra as Apple has removed QTKit (see this [issue](https://github.com/opencv/opencv/issues/6913) from OpenCV for more info). OpenCV solved this by porting their code to use...

This is the beginning of an implementation to fix #33. For now, I have just created a function that allows specifying a sample rate instead of having to instantiate a...

I am trying to play a file with a sample rate of 16 kHz (using `data = open('"myfile16khz.wav"); play(data)`, but it fails with the following exception: ``` WARNING: Audio Task...

We should add a function for computing the cross spectral density and magnitude squared coherence. Or maybe we could just bring @simonster's [Synchrony.jl]https://github.com/simonster/Synchrony.jl) implementations to DSP.jl?

I wrote an `istft` function to bring a real signal from its per-frame STFT representation to a time-domain signal by using overlap-add. This version is unoptimized as I am having...

Currently our `ArraySplit` type does not zero-pad the signal anywhere, but one may wish to zero pad the beginning or the end of an array (for example, if computing MDCTs...

Our implementation of the Hann window uses `[0.5*(1 - cos(2*pi*k/(n-1))) for k=0:(n-1)]`, so it always returns symmetric windows. MATLAB and Scipy offer the option of using an asymmetric window, which...

Add code for adaptive (LMS/RLS) filters. In case this requires adding too much to this package, it could be done in a separate package instead.

enhancement
question

``` julia> include("01-speech-blstm.jl") Loading files ERROR: LoadError: ArgumentError: invalid value for Enum BSONType: 32 Stacktrace: [1] enum_argument_error(::Symbol, ::UInt8) at ./Enums.jl:29 [2] Type at ./Enums.jl:134 [inlined] [3] read at ./Enums.jl:15 [inlined]...