Uses of Class
adams.data.noise.AbstractDenoiser
-
Packages that use AbstractDenoiser Package Description adams.data.filter adams.data.noise -
-
Uses of AbstractDenoiser in adams.data.filter
Fields in adams.data.filter declared as AbstractDenoiser Modifier and Type Field Description protected AbstractDenoiser
RemoveNoise. m_Denoiser
the noise level algorithm.Methods in adams.data.filter that return AbstractDenoiser Modifier and Type Method Description AbstractDenoiser
RemoveNoise. getDenoiser()
Returns the current denoiser algorithm.Methods in adams.data.filter with parameters of type AbstractDenoiser Modifier and Type Method Description void
RemoveNoise. setDenoiser(AbstractDenoiser value)
Sets the denoiser algorithm. -
Uses of AbstractDenoiser in adams.data.noise
Subclasses of AbstractDenoiser in adams.data.noise Modifier and Type Class Description class
AbstractDatabaseConnectionDenoiser<T extends DataContainer>
Ancestor for denoisers that require database access.class
PassThrough
A dummy denoiser, which removes no noise at all.Fields in adams.data.noise declared as AbstractDenoiser Modifier and Type Field Description protected AbstractDenoiser
AbstractDenoiser.DenoiserJob. m_Denoiser
the denoiser to use.Methods in adams.data.noise that return AbstractDenoiser Modifier and Type Method Description static AbstractDenoiser
AbstractDenoiser. forCommandLine(String cmdline)
Instantiates the denoiser algorithm from the given commandline (i.e., classname and optional options).static AbstractDenoiser
AbstractDenoiser. forName(String classname, String[] options)
Instantiates the denoiser algorithm with the given options.AbstractDenoiser
AbstractDenoiser.DenoiserJob. getDenoiser()
Returns the denoiser being used.AbstractDenoiser
AbstractDenoiser. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractDenoiser
AbstractDenoiser. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options.Constructors in adams.data.noise with parameters of type AbstractDenoiser Constructor Description DenoiserJob(AbstractDenoiser denoiser, T data)
Initializes the job.
-