-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build demo #18
Comments
Ideas on using audio:
#include <sndfile.hh>
SndfileHandle sfr("foo.wav");
std::vector<float> wav(sfr.frames());
sfr.readf(wav.data(), sfr.frames());
|
Waiting for a xeus-cling macOS conda package. |
Have been experimenting with an edge detection demo. Idea by @maartenbreddels: add a slider with an angle to interactively change the direction of the derivative. Currently, display is not responsive enough for this to work nicely, but we can already build it anyway (like the xtensor-io demo). |
Added demo in d1bccf1 |
Suggestions by @LourensVeen: use |
A cling Jupyter notebook showing interactive usage. Something with an image, something with filtering, maybe something with audio. Maybe there are numpy.fft notebooks that we could draw inspiration from as well.
The text was updated successfully, but these errors were encountered: