Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(4) | Derive(0) | Import(0)
src/x/b/xbob.spkrec-1.0.3/xbob/spkrec/feature_extraction/Cepstral.py xbob.spkrec(Download)
pre = self.m_config.pre_emphasis_coef ceps = bob.ap.Ceps(rate_wavsample[0], wl, ws, nf, nc, f_min, f_max, dw, pre) ceps.dct_norm = self.m_config.dct_norm ceps.mel_scale = self.m_config.mel_scale ceps.with_energy = self.m_config.withEnergy ceps.with_delta = self.m_config.withDelta ceps.with_delta_delta = self.m_config.withDeltaDelta cepstral_features = ceps(rate_wavsample[1] )
src/b/o/bob.spear-1.1.2/spear/feature_extraction/Cepstral.py bob.spear(Download)
pre = self.m_config.pre_emphasis_coef ceps = bob.ap.Ceps(rate_wavsample[0], wl, ws, nf, nc, f_min, f_max, dw, pre) ceps.dct_norm = self.m_config.dct_norm ceps.mel_scale = self.m_config.mel_scale ceps.with_energy = self.m_config.withEnergy ceps.with_delta = self.m_config.withDelta ceps.with_delta_delta = self.m_config.withDeltaDelta cepstral_features = ceps(rate_wavsample[1] )