|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<NoiseComputation>
util.wavelet.NoiseComputation
public enum NoiseComputation
An enumeration of noise computation methods for thresholding in wavelet space. Each entry in the enumeration implements a variation of the compute() method which takes as input the signal and its non-uniform noise map and returns its output in the noise component of the scales list.
| Enum Constant Summary | |
|---|---|
Dirac
|
|
UpperLimit
|
|
| Method Summary | |
|---|---|
void |
compute(Signal signal,
List<Scale> scales)
Compute the noise assuming unit variance for each point in the signal. |
static float[] |
getStandardDeviation(int size)
Get the standard deviation (sigma) at each scale in the wavelet transform of a random noise signal comprised of a normally distributed gaussian deviates. |
static void |
main(String[] args)
|
static NoiseComputation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NoiseComputation[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final NoiseComputation UpperLimit
public static final NoiseComputation Dirac
| Method Detail |
|---|
public static final NoiseComputation[] values()
for(NoiseComputation c : NoiseComputation.values())
System.out.println(c);
public static NoiseComputation valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified namepublic static void main(String[] args)
public void compute(Signal signal,
List<Scale> scales)
signal - input: the signal with noisescales - output: the pre-computed scales of the wavelet transform of the signalpublic static float[] getStandardDeviation(int size)
size - the size of the random signal
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||