wavelet.cs

来自「Image Fusion Techniues」· CS 代码 · 共 56 行

CS
56
字号
public interfaceIWavelet{	string Name {		get;	}	double[] ScalingNumbersAnalysis {		get;	}	double[] ScalingNumbersSynthesis {		get;	}	double[] WaveletNumbersAnalysis {		get;	}	double[] WaveletNumbersSynthesis {		get;	}	int SupportSize {		get;	}}public enum FilterType {	Analysis,	Synthesis,};public enum PassType {	Trend,	Fluctuation,};public interfaceIWaveletDTCW{	string Name {		get;	}	double[] this [FilterType ft, int tree, PassType hilo]		{ get; }	int SupportSize {		get;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?