humRetrieve.m
上传用户:abcwxk
上传日期:2016-05-20
资源大小:434k
文件大小:0k
源码类别:

midi

开发平台:

Visual C++

  1. function humRetrieve()
  2. clc; clear all; close all;
  3. % 打开哼唱的输入音频,提取相对音高序列
  4. notes_steps = ZCR_Noteseprate()
  5. % 匹配
  6. [names_top5, costs_top5] = noteMatch(notes_steps);
  7. % 显示
  8. for i = 1:5
  9.     disp(['歌曲名: ' names_top5{i} '    错误音符数: ' num2str(costs_top5(i)) ]); ;
  10. end