Difference beteween gtcc function and audioFeatureExtractor
Mostrar comentarios más antiguos
I am trying to compare the build-in function gtcc() and extract() for extracting the GTCC features of an audio
By using gtcc function as:
features_gtcc = gtcc(x,fs,"LogEnergy","ignore");
and using extract as:
extractor = audioFeatureExtractor("SampleRate",fs, ...
"Window",hamming(round(0.03*fs),"periodic"), ... % Defalt overlap and window size for gtcc function
"OverlapLength",round(0.02*fs), ...
"gtcc",true);
features_extract = extract(extractor,x);
Two results are different.
Could anyone tell me why is that please?
3 comentarios
jibrahim
el 29 de Jul. de 2020
Yunxing, which version of MATLAB are you working from?
Yunxing Tian
el 29 de Jul. de 2020
Yunxing Tian
el 29 de Jul. de 2020
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Feature Extraction en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!