private void button3_Click(object sender, EventArgs e)
        {
            AuxiliaryFunc.percent = 0;
            string[] SheetName = { "基础信息", "混淆矩阵", "剖面匹配结果" };
            Thread   newthread = new Thread(new ThreadStart(RunTask)); newthread.Start();

            OutputData.ExportExcel("波形相似度匹配", Parameter.BriefInformation("波形相似度匹配"), MatchDis.HMatrix, MatchDis.HProfile, SheetName);
        }
Exemplo n.º 2
0
 private void button4_Click(object sender, EventArgs e)
 {
     string[] sheets = { "实验信息", "距离矩阵", "匹配结果" };
     OutputData.ExportExcel("实验结果", Parameter.BriefInformation("直方图匹配"), HistogramDis.HMatrix, HistogramDis.HProfile, sheets);
 }