/** * Copyright 2007 DFKI GmbH. * All Rights Reserved. Use is subject to license terms. * * This file is part of MARY TTS. * * MARY TTS is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package marytts.signalproc.analysis.distance; /** * Implements Cosh based spectral distortion measure * * @author Oytun Türk */ public class CoshDistanceComputer extends BaselineLPSpectralEnvelopeDistortionComputer { public CoshDistanceComputer() { super(); } public double frameDistance(double[] frm1, double[] frm2, int fftSize, int lpOrder) { super.frameDistance(frm1, frm2, fftSize, lpOrder); double dist = SpectralDistanceMeasures.coshDist(frm1, frm2, fftSize, lpOrder); return dist; } // Put source and target wav and lab files into two folders and call this function public static void main(String[] args) { // mainBase("coshLPSpectralEnvelope.txt"); } }