Classifying environmental sounds using AlexNet
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ibrahim A
am 10 Jun. 2020
Kommentiert: Ibrahim A
am 23 Jun. 2020
I am trying to extract Spectrograms and MFCC from audio files then calssify them using AlexNet or GooglNet. Any tips ?
0 Kommentare
Akzeptierte Antwort
Utkarsh
am 19 Jun. 2020
3 Kommentare
Utkarsh
am 19 Jun. 2020
Bearbeitet: Utkarsh
am 19 Jun. 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')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Data Workflows finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!