代码搜索:Distortion
找到约 806 项符合「Distortion」的源代码
代码结果 806
www.eeworm.com/read/172257/9715739
m rle.m
%函数 RLE.m: 游程长度编码%
function [CR,distortion]=RLE(X,map) %CR: 压缩率;distortion: 编解码的失真
Image1=X(1:100,1:100); %X为输入的图像
Image2=Image1';
image_1D=Image2(:); %将原始图像写成一维的数据并
www.eeworm.com/read/414517/11109694
h defs.h
/*
defs.h
Drew Olbrich, 1992
*/
#ifndef _DEFS
#define _DEFS
#ifdef WIN32
#pragma warning (disable:4244) /* disable nasty conversion warnings. */
#endif
#define WIN_TITLE "distort"
#define ICON
www.eeworm.com/read/134895/13971488
m specsubm.m
function [ss,po]=specsubm(s,fs,p)
%SPECSUBM performs speech enhancement using spectral subtraction [SS,PO]=(S,FS,P)
%
% implementation of spectral subtraction algorithm by R Martin (rather slow)
%
www.eeworm.com/read/134895/13971547
txt specsubm.txt
function [ss,po]=specsubm(s,fs,p)
%SPECSUBM performs speech enhancement using spectral subtraction [SS,PO]=(S,FS,P)
%
% implementation of spectral subtraction algorithm by R Martin (rather slow)
%
www.eeworm.com/read/108302/15588777
h rdopt.h
/*
***********************************************************************
* COPYRIGHT AND WARRANTY INFORMATION
*
* Copyright 2001, International Telecommunications Union, Geneva
*
* DISCLAIMER
www.eeworm.com/read/244560/12856454
m vq.m
%函数VQ.m: 向量量化%
function [O_data,bit]=VQ(I_data,I_codebook)
%O_data:经向量量化压缩后输出数据%
%I_data:输入数据%
%I_codebook:向量量化码本%
%bit:向量量化所需总位数%
[row,col]=size(I_data);
[nc,nd]=size(I_codebook);
bit_index