humRetrieve.m
资源名称:10_11.rar [点击查看]
上传用户:abcwxk
上传日期:2016-05-20
资源大小:434k
文件大小:0k
源码类别:
midi
开发平台:
Visual C++
- function humRetrieve()
- clc; clear all; close all;
- % 打开哼唱的输入音频,提取相对音高序列
- notes_steps = ZCR_Noteseprate()
- % 匹配
- [names_top5, costs_top5] = noteMatch(notes_steps);
- % 显示
- for i = 1:5
- disp(['歌曲名: ' names_top5{i} ' 错误音符数: ' num2str(costs_top5(i)) ]); ;
- end