Classifying environmental sounds using AlexNet
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am trying to extract Spectrograms and MFCC from audio files then calssify them using AlexNet or GooglNet. Any tips ?
0 Commenti
Risposta accettata
Utkarsh
il 19 Giu 2020
3 Commenti
Utkarsh
il 19 Giu 2020
Modificato: Utkarsh
il 19 Giu 2020
Have you tried this for saving the spectrogram? (It will save the spectrogram without any border,label,etc)
s = spectrogram(x); %x contains the loaded audio in an array
spectrogram(x,'yaxis')
set(gca, 'Visible', 'off');
colorbar('off');
saveas(gcf,'file_name.png')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!